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:
authorMarek Safar <marek.safar@gmail.com>2018-01-23 16:26:51 +0300
committerMarek Safar <marek.safar@gmail.com>2018-01-24 11:22:14 +0300
commit07a0edbf4e97c754c590056dd19eb82186b07305 (patch)
treed2a40ff515165d0221e36273ea7260da976949f9 /scripts
parent236a8d6dc097df46aa7e70d5707b180e6ec6459b (diff)
[ci] Align acceptance tests timeouts
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-test-acceptance-tests.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/ci/run-test-acceptance-tests.sh b/scripts/ci/run-test-acceptance-tests.sh
index 252f1ca4f5d..93025401031 100755
--- a/scripts/ci/run-test-acceptance-tests.sh
+++ b/scripts/ci/run-test-acceptance-tests.sh
@@ -1,5 +1,9 @@
#!/bin/bash -e
+#
+# The timeouts are double of time the execution usually takes
+#
+
# run the MS test suite
LANG=en_US.UTF-8 ${TESTCMD} --label=check-ms-test-suite --timeout=10m make -C acceptance-tests check-ms-test-suite
@@ -13,8 +17,8 @@ fi
${TESTCMD} --label=check-roslyn --timeout=60m make -C acceptance-tests check-roslyn
# run CoreCLR managed tests, we precompile them in parallel so individual steps don't need to do it
-${TESTCMD} --label=coreclr-compile-tests --timeout=120m --fatal make -C acceptance-tests coreclr-compile-tests
-${TESTCMD} --label=coreclr-runtest-basic --timeout=10m make -C acceptance-tests coreclr-runtest-basic
+${TESTCMD} --label=coreclr-compile-tests --timeout=140m --fatal make -C acceptance-tests coreclr-compile-tests
+${TESTCMD} --label=coreclr-runtest-basic --timeout=20m make -C acceptance-tests coreclr-runtest-basic
${TESTCMD} --label=coreclr-runtest-coremanglib --timeout=10m make -C acceptance-tests coreclr-runtest-coremanglib
# run the GC stress tests (on PRs we only run a short version)