-
Enhancement
-
Resolution: Fixed
-
P4
-
13
-
b04
The fix for JDK-8207964 was incomplete. For example, it needed to change 'time' in this constructor from 60 to 30 because 'time' is used to store the value of the -stressTime option:
/**
* Create StressOptions with default settings.
*/
public StressOptions() {
time = 60;
iterationsFactor = 1;
threadsFactor = 1;
runsFactor = 1;
}
The purpose of this RFE is to finish what was missed by the fix forJDK-8207964.
/**
* Create StressOptions with default settings.
*/
public StressOptions() {
time = 60;
iterationsFactor = 1;
threadsFactor = 1;
runsFactor = 1;
}
The purpose of this RFE is to finish what was missed by the fix for
- relates to
-
JDK-8207964 [TESTBUG] Change stressTime to default to 30 for nsk tests
- Resolved