Revert "[jit] Emit the results of the jit regressions tests in nunit format only...
authorZoltan Varga <vargaz@gmail.com>
Thu, 17 Sep 2015 21:50:39 +0000 (17:50 -0400)
committerZoltan Varga <vargaz@gmail.com>
Thu, 17 Sep 2015 21:50:58 +0000 (17:50 -0400)
This reverts commit 1ef694ae5272dd08f972e74598ec758cb911be89.

Revert this, JENKINS_URL is not an automake variable.

mono/mini/Makefile.am.in

index cb409a9fedc9b02a439fc3a5c8109f453f730241..f9d17cfb1e31d21244f99c51c7899f5d0c10da5a 100755 (executable)
@@ -649,13 +649,14 @@ checktests: $(regtests)
 rcheck: mono $(regtests)
 if NACL_CODEGEN
        for i in $(regtests); do echo "running test $$i"; $(MINI_RUNTIME) $$i --exclude 'NaClDisable' || exit 1; done
-elif JENKINS_URL
+else
        -($(MINI_RUNTIME) --regression $(regtests); echo $$? > regressionexitcode.out) | $(srcdir)/emitnunit.pl
        exit $$(cat regressionexitcode.out)
-else
-       $(MINI_RUNTIME) --regression $(regtests)
 endif
 
+rcheck2: mono $(regtests)
+       $(MINI_RUNTIME) --regression $(regtests)
+
 check-seq-points: mono $(regtests)
        rm -f TestResults_op_il_seq_point.xml
        for i in $(regtests); do $(srcdir)/test_op_il_seq_point.sh $$i || ($(srcdir)/test_op_il_seq_point_headerfooter.sh; exit 1) || exit 1; done