Object construction.
[mono.git] / mono / benchmark / Makefile.am
index 42bd94b4335d3f6e37512f31ee8c2a78ea2d32e3..4db8e150a63a8bfd428831c1b3c7323d36cc1791 100644 (file)
@@ -1,4 +1,5 @@
-TEST_PROG=../jit/mono
+TEST_PROG=../mini/mono
+RUNTIME_ARGS="-O=all"
 
 CSC=mcs
 
@@ -12,11 +13,14 @@ TESTSRC=                    \
        inline2.cs              \
        inline3.cs              \
        inline4.cs              \
+       inline5.cs              \
+       inline6.cs              \
        muldiv.cs               \
        loops.cs                \
        initlocals.cs           \
        logic.cs                \
        switch.cs               \
+       ctor-bench.cs           \
        bulkcpy.il              \
        math.cs
 
@@ -35,7 +39,7 @@ test: $(TEST_PROG) $(TESTSI)
        @failed=0; \
        passed=0; \
        for i in $(TESTSI); do  \
-               if ./test-driver $(TEST_PROG) $$i; \
+               if ./test-driver $(TEST_PROG) $$i $(RUNTIME_ARGS); \
                then \
                        passed=`expr $${passed} + 1`; \
                else \