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-10-17 19:48:00 +0300
committerMarek Safar <marek.safar@gmail.com>2017-10-17 22:26:41 +0300
commit2a294c432e5aa9d78c575a04a2eb4d20b01a2b53 (patch)
tree3573d0a6ac9b339f76c9dbdc307ed9c58c53fa0d /scripts
parent87694b9ed09d9e632641e9d2e9de4b997db92801 (diff)
[interp] do not run mcs/tests on ARM on CI
an issue [1] is blocking it on that architecture. https://github.com/mono/mono/pull/5806
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-test-interpreter.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/run-test-interpreter.sh b/scripts/ci/run-test-interpreter.sh
index 0a6fed8717c..097b5db894f 100755
--- a/scripts/ci/run-test-interpreter.sh
+++ b/scripts/ci/run-test-interpreter.sh
@@ -6,4 +6,4 @@ ${TESTCMD} --label=interpreter-regression --timeout=10m make -C mono/mini richec
${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
-${TESTCMD} --label=mcs-tests --timeout=160m make -w -C mcs/tests -k check-interp 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