Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Urban <bernhard.urban@xamarin.com>2017-11-06 14:46:14 +0300
committerBernhard Urban <bernhard.urban@xamarin.com>2017-11-06 17:50:32 +0300
commit035ad2f1186447b41624aff4abcd50c7087800fe (patch)
treec78e9d8fed494225391cf28eba6dc78c50661e04 /scripts
parent30fd079c90b6a44a2e8bb9b35b414a06998ccc77 (diff)
[mcs tests.make] control with TEST_WITH_INTERPRETER if `run-test` target uses the interpreter
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-test-interpreter.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/ci/run-test-interpreter.sh b/scripts/ci/run-test-interpreter.sh
index 5d322c0ae8f..49b13d0e93c 100755
--- a/scripts/ci/run-test-interpreter.sh
+++ b/scripts/ci/run-test-interpreter.sh
@@ -1,9 +1,11 @@
#!/bin/bash -e
export TESTCMD=`dirname "${BASH_SOURCE[0]}"`/run-step.sh
+export TEST_WITH_INTERPRETER=1
${TESTCMD} --label=interpreter-regression --timeout=10m make -C mono/mini richeck
${TESTCMD} --label=mixedmode-regression --timeout=10m make -C mono/mini mixedcheck
${TESTCMD} --label=compile-runtime-tests --timeout=40m make -w -C mono/tests -j4 tests
${TESTCMD} --label=runtime-interp --timeout=160m make -w -C mono/tests -k testinterp V=1 CI=1 CI_PR=${ghprbPullId}
+${TESTCMD} --label=corlib --timeout=160m make -w -C mcs/class/corlib run-test V=1
if [[ ${label} != 'debian-8-armhf' ]]; then ${TESTCMD} --label=mcs-tests --timeout=160m make -w -C mcs/tests -k check-interp V=1; fi