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:
authorLudovic Henry <ludovic@xamarin.com>2017-04-06 21:49:04 +0300
committerGitHub <noreply@github.com>2017-04-06 21:49:04 +0300
commite0fe95548370cfe9827b7f607285e15bb230a0ba (patch)
tree65818a0cf476054d85cdeb55222e5f2438e50618 /scripts
parenta762f83e1392a8159fff0105f7f5f1d50ae51848 (diff)
[tests] Add stress testing and reduce sgen normal testing time (#4653)
* [tests] Keep testing even if a test has failed * [tests] Add stress testing and reduce sgen normal testing time
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/run-jenkins.sh5
-rwxr-xr-xscripts/ci/run-test-stress-tests.sh3
2 files changed, 7 insertions, 1 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index fc913009f2a..6c923e97762 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -84,7 +84,10 @@ if [[ ${CI_TAGS} == *'acceptance-tests'* ]];
$(dirname "${BASH_SOURCE[0]}")/run-test-acceptance-tests.sh
elif [[ ${CI_TAGS} == *'profiler-stress-tests'* ]];
then
- $(dirname "${BASH_SOURCE[0]}")/run-test-profiler-stress-tests.sh
+ $(dirname "${BASH_SOURCE[0]}")/run-test-profiler-stress-tests.sh
+elif [[ ${CI_TAGS} == *'stress-tests'* ]];
+ then
+ $(dirname "${BASH_SOURCE[0]}")/run-test-stress-tests.sh
elif [[ ${CI_TAGS} == *'interpreter'* ]];
then
$(dirname "${BASH_SOURCE[0]}")/run-test-interpreter.sh
diff --git a/scripts/ci/run-test-stress-tests.sh b/scripts/ci/run-test-stress-tests.sh
new file mode 100755
index 00000000000..32d9f84c708
--- /dev/null
+++ b/scripts/ci/run-test-stress-tests.sh
@@ -0,0 +1,3 @@
+#!/bin/bash -e
+
+${TESTCMD} --label=check-stress --timeout=12h make -C mono/tests check-stress