Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 9de283b

Browse files
committedDec 2, 2020
8257505: nsk/share/test/StressOptions stressTime is scaled in getter but not when printed
Reviewed-by: kbarrett, dholmes
1 parent 282cb32 commit 9de283b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎test/hotspot/jtreg/vmTestbase/nsk/share/test/StressOptions.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,10 @@ public void parseCommandLine(String[] args) {
200200
* @param out output stream
201201
*/
202202
public void printInfo(PrintStream out) {
203-
out.println("Stress time: " + time + " seconds");
204-
out.println("Stress iterations factor: " + iterationsFactor);
205-
out.println("Stress threads factor: " + threadsFactor);
206-
out.println("Stress runs factor: " + runsFactor);
203+
out.println("Stress time: " + getTime() + " seconds");
204+
out.println("Stress iterations factor: " + getIterationsFactor());
205+
out.println("Stress threads factor: " + getThreadsFactor());
206+
out.println("Stress runs factor: " + getRunsFactor());
207207
}
208208

209209
private void error(String msg) {

0 commit comments

Comments
 (0)
This repository has been archived.