Skip to content

Commit

Permalink
8257505: nsk/share/test/StressOptions stressTime is scaled in getter …
Browse files Browse the repository at this point in the history
…but not when printed

Reviewed-by: kbarrett, dholmes
  • Loading branch information
kstefanj committed Dec 2, 2020
1 parent 282cb32 commit 9de283b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@ public void parseCommandLine(String[] args) {
* @param out output stream
*/
public void printInfo(PrintStream out) {
out.println("Stress time: " + time + " seconds");
out.println("Stress iterations factor: " + iterationsFactor);
out.println("Stress threads factor: " + threadsFactor);
out.println("Stress runs factor: " + runsFactor);
out.println("Stress time: " + getTime() + " seconds");
out.println("Stress iterations factor: " + getIterationsFactor());
out.println("Stress threads factor: " + getThreadsFactor());
out.println("Stress runs factor: " + getRunsFactor());
}

private void error(String msg) {
Expand Down

1 comment on commit 9de283b

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.