aboutsummaryrefslogtreecommitdiff
path: root/jdk8-jcstress-test.yaml
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2016-12-01 17:11:11 +0000
committerStuart Monteith <stuart.monteith@linaro.org>2016-12-01 17:17:33 +0000
commit0baa804626ebc47bdd70bfff40fb32c88b9620ac (patch)
treef3f66fdac431c5695b6602f2a1ef0ce3743cd3b1 /jdk8-jcstress-test.yaml
parent59bc64a5b4216127536ac6bc924dcffe1af41b4d (diff)
jdk: jcstress - change to default mode
Before we were running with "sanity" mode, which is a very short run. As the tests are stochastic in nature, the longer they run, the better. Change-Id: I5ade5945f59d0f3e99d99381febf48256a0a9c24
Diffstat (limited to 'jdk8-jcstress-test.yaml')
-rw-r--r--jdk8-jcstress-test.yaml9
1 files changed, 6 insertions, 3 deletions
diff --git a/jdk8-jcstress-test.yaml b/jdk8-jcstress-test.yaml
index fce795c0..f5733a99 100644
--- a/jdk8-jcstress-test.yaml
+++ b/jdk8-jcstress-test.yaml
@@ -20,6 +20,10 @@
disabled: false
node: aarch64-06
display-name: 'OpenJDK 8 - Run jcstress tests'
+ parameters:
+ - string:
+ name: JCSTRESS_MODE
+ default: 'default'
axes:
- axis:
type: user-defined
@@ -66,7 +70,6 @@
set -eu
TEST_TYPE=all
- TEST_MODE=sanity
# client variant uses server with -XX:TieredStopAtLevel=1
# zero is a third possible value.
@@ -83,9 +86,9 @@
# XXX Don't fail the job if jcstress itself fails.
set +e
if [ JVM_VARIANT = "server" ]; then
- java -XX:-RestrictContended -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-TieredCompilation -XX:ReservedCodeCacheSize=128M -jar ${JCSTRESS_JAR} -m ${TEST_MODE}
+ java -XX:-RestrictContended -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:-TieredCompilation -XX:ReservedCodeCacheSize=128M -jar ${JCSTRESS_JAR} -m ${JCSTRESS_MODE}
else
- java -XX:-RestrictContended -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:ReservedCodeCacheSize=128M -jar ${JCSTRESS_JAR} -m ${TEST_MODE}
+ java -XX:-RestrictContended -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:ReservedCodeCacheSize=128M -jar ${JCSTRESS_JAR} -m ${JCSTRESS_MODE}
fi
test_result=$?