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:
authorVlad Brezae <brezaevlad@gmail.com>2020-05-10 22:39:56 +0300
committerGitHub <noreply@github.com>2020-05-10 22:39:56 +0300
commit866914eeff6ef41b95feb054be2b3d6a2a7ba3fb (patch)
treefcd6ce603c3a6e4e0d4a98b6f99d038cd1b6a52d /scripts
parent8e1f242bdbbe3f4efe85a430472a61a8f2b78399 (diff)
[tests] Adjustments to interp disabled tests (#19748)
* [interp] Disable fullaotmixed suite on x86 * [interp] Small cleanup of disabled tests Enable a bunch of tests on arm (which I thought I enabled 2 years ago). Avoid duplication by moving some arch specific disabled tests to all platforms. Enable a few tests that seem to have been fixed in the meantime.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-test-interpreter.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/ci/run-test-interpreter.sh b/scripts/ci/run-test-interpreter.sh
index d32db5c950c..80166a63add 100755
--- a/scripts/ci/run-test-interpreter.sh
+++ b/scripts/ci/run-test-interpreter.sh
@@ -9,7 +9,11 @@ else ${TESTCMD} --label=interpreter-whitebox --timeout=10m make -C mono/mini int
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
+# Interp entry trampolines not yet implemented on x86. This has some full aot limitations
+if [[ ${CI_TAGS} == *'i386'* ]]
+then ${TESTCMD} --label=fullaotmixed-regression --skip
+else ${TESTCMD} --label=fullaotmixed-regression --timeout=20m make -C mono/mini fullaotmixedcheck
+fi
${TESTCMD} --label=compile-runtime-tests --timeout=40m make -w -C mono/tests -j ${CI_CPU_COUNT} test
${TESTCMD} --label=runtime-interp --timeout=160m make -w -C mono/tests -k testinterp V=1
${TESTCMD} --label=corlib --timeout=160m make -w -C mcs/class/corlib run-test V=1