Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8175755 | 10 | Xueming Shen | P4 | Resolved | Fixed | b02 |
partialUpdateFooMainClass has the following:
jar("--create",
"--file=" + modularJar.toString(),
"--main-class=" + "IAmNotTheEntryPoint",
"--no-manifest",
"-C", modClasses.toString(), ".") // includes module-info.class
.assertSuccess();
which fails after theJDK-8173393 because the main class cannot be in the unnamed package.
The test has been temporarily disabled and needs to be re-examined to find a better way to test updating the main class.
jar("--create",
"--file=" + modularJar.toString(),
"--main-class=" + "IAmNotTheEntryPoint",
"--no-manifest",
"-C", modClasses.toString(), ".") // includes module-info.class
.assertSuccess();
which fails after the
The test has been temporarily disabled and needs to be re-examined to find a better way to test updating the main class.
- backported by
-
JDK-8175755 partialUpdateFooMainClass test in tools/jar/modularJar/Basic.java needs to be re-examined
- Resolved
- relates to
-
JDK-8173393 Module system implementation refresh (2/2017)
- Resolved