aboutsummaryrefslogtreecommitdiff
path: root/jdk8-jcstress-test.yaml
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2017-02-27 10:37:08 +0000
committerStuart Monteith <stuart.monteith@linaro.org>2017-02-27 10:37:08 +0000
commitf5f9c7ce5336417f9059f85bcdbc941be855e279 (patch)
treec498cc8d086c5312bbadd48ffb094b809a9928c5 /jdk8-jcstress-test.yaml
parent6b045105223d3d5f73892133e1160256100f0964 (diff)
jdk: Remove superfluous options from jcstress tests
According to the author, JCStresss mustn't have any additional options passed to it. Remove them, we don't need to distinguish between C1 and C2, the framework will do that. Change-Id: I8908cbabde12aed7e552494419f30d162d502d31
Diffstat (limited to 'jdk8-jcstress-test.yaml')
-rw-r--r--jdk8-jcstress-test.yaml6
1 files changed, 1 insertions, 5 deletions
diff --git a/jdk8-jcstress-test.yaml b/jdk8-jcstress-test.yaml
index 74e872b9..7b15cbc9 100644
--- a/jdk8-jcstress-test.yaml
+++ b/jdk8-jcstress-test.yaml
@@ -85,11 +85,7 @@
# 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 ${JCSTRESS_MODE}
- else
- java -XX:-RestrictContended -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:ReservedCodeCacheSize=128M -jar ${JCSTRESS_JAR} -m ${JCSTRESS_MODE}
- fi
+ java -jar ${JCSTRESS_JAR} -m ${JCSTRESS_MODE}
test_result=$?
set -e