Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust jlm load parameters #361

Merged
merged 1 commit into from
Sep 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ public void execute(StfCoreExtension test) throws StfException {
// Process definition for the monitored server JVM
String inventoryFile = "/openjdk.test.load/config/inventories/mix/mini-mix.xml";

// setSuiteNumTests and setSuiteThreadCount need to be big enough to ensure the workload does not
// end within the setTimeLimit time.
LoadTestProcessDefinition serverLoadTestInvocation = test.createLoadTestSpecification()
.addJvmOption("-Xmx256m")
.addJvmOption("-Dcom.sun.management.jmxremote.port=1234")
Expand All @@ -94,7 +96,7 @@ public void execute(StfCoreExtension test) throws StfException {
.setTimeLimit("30m")
.setAbortAtFailureLimit(-1)
.addSuite("mini-mix")
.setSuiteNumTests(900000)
.setSuiteNumTests(20000000)
.setSuiteInventory(inventoryFile)
.setSuiteThreadCount(30)
.setSuiteRandomSelection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ public void execute(StfCoreExtension test) throws StfException {
// Process definition for the server JVM
String inventoryFile = "/openjdk.test.load/config/inventories/mix/mini-mix.xml";

// setSuiteNumTests and setSuiteThreadCount need to be big enough to ensure the workload does not
// end within the setTimeLimit time.
LoadTestProcessDefinition serverLoadTestInvocation = test.createLoadTestSpecification()
.addJvmOption("-Xmx256m")
.addJvmOption("-Dcom.sun.management.jmxremote.port=1234")
Expand All @@ -80,7 +82,7 @@ public void execute(StfCoreExtension test) throws StfException {
.setTimeLimit("30m")
.setAbortAtFailureLimit(-1)
.addSuite("mini-mix")
.setSuiteNumTests(900000)
.setSuiteNumTests(20000000)
.setSuiteInventory(inventoryFile)
.setSuiteThreadCount(30)
.setSuiteRandomSelection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ public void execute(StfCoreExtension test) throws StfException {
// Process definition for the monitored server JVM
String inventoryFile = "/openjdk.test.load/config/inventories/mix/mini-mix.xml";

// setSuiteNumTests and setSuiteThreadCount need to be big enough to ensure the workload does not
// end within the setTimeLimit time.
LoadTestProcessDefinition serverLoadTestInvocation = test.createLoadTestSpecification()
.addJvmOption("-Xmx256m")
.addJvmOption("-Dcom.sun.management.jmxremote.port=1234")
Expand All @@ -94,7 +96,7 @@ public void execute(StfCoreExtension test) throws StfException {
.setTimeLimit("30m")
.setAbortAtFailureLimit(-1)
.addSuite("mini-mix")
.setSuiteNumTests(900000)
.setSuiteNumTests(20000000)
.setSuiteInventory(inventoryFile)
.setSuiteThreadCount(30)
.setSuiteRandomSelection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ public void execute(StfCoreExtension test) throws StfException {
// Process definition for the monitored server JVM
String inventoryFile = "/openjdk.test.load/config/inventories/mix/mini-mix.xml";

// setSuiteNumTests and setSuiteThreadCount need to be big enough to ensure the workload does not
// end within the setTimeLimit time.
LoadTestProcessDefinition serverJavaInvocation = test.createLoadTestSpecification()
.addJvmOption("-Xmx256m")
.addJvmOption("-Dcom.sun.management.jmxremote.port=1234")
Expand All @@ -75,7 +77,7 @@ public void execute(StfCoreExtension test) throws StfException {
.setTimeLimit("30m")
.setAbortAtFailureLimit(-1)
.addSuite("mini-mix")
.setSuiteNumTests(900000)
.setSuiteNumTests(20000000)
.setSuiteInventory(inventoryFile)
.setSuiteThreadCount(30)
.setSuiteRandomSelection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ public void execute(StfCoreExtension test) throws StfException {
// Process definition for the server JVM
String inventoryFile = "/openjdk.test.load/config/inventories/mix/mini-mix.xml";

// setSuiteNumTests and setSuiteThreadCount need to be big enough to ensure the workload does not
// end within the setTimeLimit time.
LoadTestProcessDefinition serverJavaInvocation = test.createLoadTestSpecification()
.addJvmOption("-Xmx256m")
.addJvmOption("-Dcom.sun.management.jmxremote.port=1234")
Expand All @@ -91,7 +93,7 @@ public void execute(StfCoreExtension test) throws StfException {
.setTimeLimit("30m")
.setAbortAtFailureLimit(-1)
.addSuite("mini-mix")
.setSuiteNumTests(900000)
.setSuiteNumTests(20000000)
.setSuiteInventory(inventoryFile)
.setSuiteThreadCount(30)
.setSuiteRandomSelection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ public void execute(StfCoreExtension test) throws StfException {
// Process definition for the monitored server JVM
String inventoryFile = "/openjdk.test.load/config/inventories/mix/mini-mix.xml";

// setSuiteNumTests and setSuiteThreadCount need to be big enough to ensure the workload does not
// end within the setTimeLimit time.
LoadTestProcessDefinition serverLoadTestInvocation = test.createLoadTestSpecification()
.addJvmOption("-Xmx256m")
.addJvmOption("-Dcom.sun.management.jmxremote.port=1234")
Expand All @@ -94,7 +96,7 @@ public void execute(StfCoreExtension test) throws StfException {
.setTimeLimit("30m")
.setAbortAtFailureLimit(-1)
.addSuite("mini-mix")
.setSuiteNumTests(900000)
.setSuiteNumTests(20000000)
.setSuiteInventory(inventoryFile)
.setSuiteThreadCount(30)
.setSuiteRandomSelection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ public void execute(StfCoreExtension test) throws StfException {
// Process definition for the server JVM
String inventoryFile = "/openjdk.test.load/config/inventories/mix/mini-mix.xml";

// setSuiteNumTests and setSuiteThreadCount need to be big enough to ensure the workload does not
// end within the setTimeLimit time.
LoadTestProcessDefinition serverLoadTestInvocation = test.createLoadTestSpecification()
.addJvmOption("-Xmx256m")
.addJvmOption("-Dcom.sun.management.jmxremote.port=1234")
Expand All @@ -80,7 +82,7 @@ public void execute(StfCoreExtension test) throws StfException {
.setTimeLimit("30m")
.setAbortAtFailureLimit(-1)
.addSuite("mini-mix")
.setSuiteNumTests(900000)
.setSuiteNumTests(20000000)
.setSuiteInventory(inventoryFile)
.setSuiteThreadCount(30)
.setSuiteRandomSelection();
Expand Down