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:
authorZoltan Varga <vargaz@gmail.com>2019-08-10 19:58:13 +0300
committerZoltan Varga <vargaz@gmail.com>2019-08-10 22:18:26 +0300
commitc6054d5aa1300f0d76cddd365e68e5678a1d2a46 (patch)
tree04fedef72d628d04138e21bc9269b84b65896e35 /scripts
parent95b705d8c157d3e162bbea42a4b8cb16b5bc9d68 (diff)
[wasm] Run System.Core xunit tests on CI.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-jenkins.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index 488601cf124..277bfb913a6 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -330,6 +330,7 @@ if [[ ${CI_TAGS} == *'webassembly'* ]] || [[ ${CI_TAGS} == *'wasm'* ]];
export aot_test_suites="System.Core"
export mixed_test_suites="System.Core"
+ export xunit_test_suites="System.Core"
${TESTCMD} --label=provision --timeout=20m --fatal $gnumake --output-sync=recurse --trace -C sdks/builds provision-wasm
@@ -350,6 +351,7 @@ if [[ ${CI_TAGS} == *'webassembly'* ]] || [[ ${CI_TAGS} == *'wasm'* ]];
${TESTCMD} --label=v8-system-core --timeout=20m $gnumake -C sdks/wasm run-v8-System.Core
${TESTCMD} --label=sm-system-core --timeout=20m $gnumake -C sdks/wasm run-sm-System.Core
${TESTCMD} --label=jsc-system-core --timeout=20m $gnumake -C sdks/wasm run-jsc-System.Core
+ for suite in ${xunit_test_suites}; do ${TESTCMD} --label=xunit-${suite} --timeout=10m $gnumake -C sdks/wasm run-${suite}-xunit; done
# disable for now until https://github.com/mono/mono/pull/13622 goes in
#${TESTCMD} --label=debugger --timeout=20m $gnumake -C sdks/wasm test-debugger
${TESTCMD} --label=browser --timeout=20m $gnumake -C sdks/wasm run-browser-tests