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-Forster <lewurm@gmail.com>2020-01-14 23:59:48 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2020-01-14 23:59:48 +0300
commit05f2651a12ba5eae1de8b488c4026145622b265a (patch)
treed43864f3b5bd8039602b08c5fb760b9e253549f9 /scripts/ci
parentd9db79b4b281afc5064921ff69a4bbbfb2c5f0e1 (diff)
[interp] initial infrastructure for whitebox testing of optimization passes (#18268)
Diffstat (limited to 'scripts/ci')
-rwxr-xr-xscripts/ci/run-test-interpreter.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/ci/run-test-interpreter.sh b/scripts/ci/run-test-interpreter.sh
index 378e0a5c6f1..d32db5c950c 100755
--- a/scripts/ci/run-test-interpreter.sh
+++ b/scripts/ci/run-test-interpreter.sh
@@ -3,6 +3,10 @@
export TESTCMD=`dirname "${BASH_SOURCE[0]}"`/run-step.sh
export TEST_WITH_INTERPRETER=1
+if [[ ${CI_TAGS} == *'win-'* ]]
+then ${TESTCMD} --label=interpreter-whitebox --skip;
+else ${TESTCMD} --label=interpreter-whitebox --timeout=10m make -C mono/mini interp-whitebox;
+fi
${TESTCMD} --label=interpreter-regression --timeout=10m make -C mono/mini richeck
${TESTCMD} --label=mixedmode-regression --timeout=10m make -C mono/mini mixedcheck
${TESTCMD} --label=fullaotmixed-regression --timeout=20m make -C mono/mini fullaotmixedcheck