est vmTestbase/nsk/jvmti/Breakpoint/breakpoint001 has incorrect check of strcmp
results here:
for (i=0; i<METH_NUM; i++)
if (strcmp(methNam,METHODS[i][0]) &&
strcmp(methSig,METHODS[i][1])) {
printf("CHECK PASSED: method name: "%s"\tsignature: "%s" %d\n",
methNam, methSig, i);
if (checkStatus == PASSED)
bpEvents[i]++;
break;
}
So test passed when both strcmp (name,sig) are not zero.
The test passes only because there are 2 methods that are checked and it
increases counters for "incorrect" methods.
-------------
Commit messages:
- 8259799: vmTestbase/nsk/jvmti/Breakpoint/breakpoint001 is incorrect
Changes: https://git.openjdk.java.net/jdk/pull/2084/files
Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=2084&range=00
Issue: https://bugs.openjdk.java.net/browse/JDK-8259799
Stats: 3 lines in 1 file changed: 0 ins; 0 del; 3 mod
Patch: https://git.openjdk.java.net/jdk/pull/2084.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/2084/head:pull/2084
PR: https://git.openjdk.java.net/jdk/pull/2084