-
Bug
-
Resolution: Fixed
-
P5
-
18, 19, 20
-
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
-