Skip to content

Commit ad498f5

Browse files
committedJul 21, 2024
8335896: Source launcher should set TCCL
Reviewed-by: alanb
1 parent b21cb44 commit ad498f5

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/launcher/MemoryContext.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,9 @@ byte[] compileJavaFileByName(String name) {
184184
* @param parent the class loader to be used as the parent loader
185185
* @param mainClassName the fully-qualified name of the application class to load
186186
* @return class loader object able to find and load the desired class
187-
* @throws ClassNotFoundException if the class cannot be located
188187
* @throws Fault if a modular application class is in the unnamed package
189188
*/
190-
ClassLoader newClassLoaderFor(ClassLoader parent, String mainClassName) throws ClassNotFoundException, Fault {
189+
ClassLoader newClassLoaderFor(ClassLoader parent, String mainClassName) throws Fault {
191190
var moduleInfoBytes = inMemoryClasses.get("module-info");
192191
if (moduleInfoBytes == null) {
193192
// Trivial case: no compiled module descriptor available, no extra module layer required

‎src/jdk.compiler/share/classes/com/sun/tools/javac/launcher/SourceLauncher.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,9 @@ private Class<?> execute(MemoryContext context, String[] mainArgs)
198198
// 1. Find a main method in the first class and if there is one - invoke it
199199
Class<?> firstClass;
200200
String firstClassName = program.qualifiedTypeNames().getFirst();
201+
ClassLoader loader = context.newClassLoaderFor(parentLoader, firstClassName);
202+
Thread.currentThread().setContextClassLoader(loader);
201203
try {
202-
ClassLoader loader = context.newClassLoaderFor(parentLoader, firstClassName);
203204
firstClass = Class.forName(firstClassName, false, loader);
204205
} catch (ClassNotFoundException e) {
205206
throw new Fault(Errors.CantFindClass(firstClassName));

‎test/langtools/tools/javac/launcher/SourceLauncherTest.java

+22-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8192920 8204588 8246774 8248843 8268869 8235876 8328339
26+
* @bug 8192920 8204588 8246774 8248843 8268869 8235876 8328339 8335896
2727
* @summary Test source launcher
2828
* @library /tools/lib
2929
* @enablePreview
@@ -276,6 +276,27 @@ public void testSystemProperty(Path base) throws IOException {
276276
checkEqual("stdout", log.trim(), file.toAbsolutePath().toString());
277277
}
278278

279+
@Test
280+
public void testThreadContextClassLoader(Path base) throws IOException {
281+
tb.writeJavaFiles(base, //language=java
282+
"""
283+
class ThreadContextClassLoader {
284+
public static void main(String... args) {
285+
var expected = ThreadContextClassLoader.class.getClassLoader();
286+
var actual = Thread.currentThread().getContextClassLoader();
287+
System.out.println(expected == actual);
288+
}
289+
}
290+
""");
291+
292+
Path file = base.resolve("ThreadContextClassLoader.java");
293+
String log = new JavaTask(tb)
294+
.className(file.toString())
295+
.run(Task.Expect.SUCCESS)
296+
.getOutput(Task.OutputKind.STDOUT);
297+
checkEqual("stdout", log.trim(), "true");
298+
}
299+
279300
void testSuccess(Path file, String expect) throws IOException {
280301
Result r = run(file, Collections.emptyList(), List.of("1", "2", "3"));
281302
checkEqual("stdout", r.stdOut, expect);

0 commit comments

Comments
 (0)
Please sign in to comment.