-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P5
-
Affects Version/s: 18, 19, 20
-
Component/s: hotspot
-
b07
The following two @Run methods invoke the wrong @Test methods, most likely due to a copy-paste error:
@Run(test = "testStrideNegScalePosInIntLoop2")
private void testStrideNegScalePosInIntLoop2_runner() {
testStrideNegScalePosInIntLoop1(0, 100, 200, 0);
}
@Run(test = "testStridePosScaleNegInIntLoop2")
private void testStridePosScaleNegInIntLoop2_runner() {
testStridePosScaleNegInIntLoop1(0, 100, 200, 198);
}
We should change these to invoke the correct methods instead.
@Run(test = "testStrideNegScalePosInIntLoop2")
private void testStrideNegScalePosInIntLoop2_runner() {
testStrideNegScalePosInIntLoop1(0, 100, 200, 0);
}
@Run(test = "testStridePosScaleNegInIntLoop2")
private void testStridePosScaleNegInIntLoop2_runner() {
testStridePosScaleNegInIntLoop1(0, 100, 200, 198);
}
We should change these to invoke the correct methods instead.
- relates to
-
JDK-8278296 Generalize long range check transformation
-
- Resolved
-