-
Bug
-
Resolution: Fixed
-
P4
-
20
-
b19
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8334128 | 17.0.13-oracle | Mimoun Ghordou | P4 | Resolved | Fixed | b01 |
JDK-8335650 | 17.0.13 | Andrew Lu | P4 | Resolved | Fixed | b01 |
The problem is due to the runTest statement below:
public static void main(String[] args) throws Exception {
runTest(AppendClasspath::testDefaultBase);
}
It should be:
runTest(RelativePath::testDefaultBase);
public static void main(String[] args) throws Exception {
runTest(AppendClasspath::testDefaultBase);
}
It should be:
runTest(RelativePath::testDefaultBase);
- backported by
-
JDK-8334128 dynamicArchive/RelativePath.java is running other test case
- Resolved
-
JDK-8335650 dynamicArchive/RelativePath.java is running other test case
- Resolved
- links to
-
Commit openjdk/jdk17u-dev/b555bbbe
-
Commit openjdk/jdk/3466e999
-
Review openjdk/jdk17u-dev/2649
-
Review openjdk/jdk/10597
(1 links to)