Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Bullen2018-08-14 15:07:54 +0000
committerStephan Herrmann2018-08-15 14:41:55 +0000
commit6432fdd58a28b72dc3736bdded436559d4f912d6 (patch)
treeaabcd30cc3bcd01557fcab61b45cce1bd4f47fc9 /org.eclipse.jdt.compiler.apt.tests
parent092e038e3ed378d80c1b5abeb77e16a533a9fa75 (diff)
downloadeclipse.jdt.core-6432fdd58a28b72dc3736bdded436559d4f912d6.tar.gz
eclipse.jdt.core-6432fdd58a28b72dc3736bdded436559d4f912d6.tar.xz
eclipse.jdt.core-6432fdd58a28b72dc3736bdded436559d4f912d6.zip
Bug 531057 - Support running tests on JUnit 5I20180815-2000
- Set class loader to work with the new testing suite Change-Id: Iec085a1e91c5b03cb28afbabbdba258ec4a26717 Signed-off-by: Lucas Bullen <lbullen@redhat.com>
Diffstat (limited to 'org.eclipse.jdt.compiler.apt.tests')
-rw-r--r--org.eclipse.jdt.compiler.apt.tests/src/org/eclipse/jdt/compiler/apt/tests/BatchTestUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.compiler.apt.tests/src/org/eclipse/jdt/compiler/apt/tests/BatchTestUtils.java b/org.eclipse.jdt.compiler.apt.tests/src/org/eclipse/jdt/compiler/apt/tests/BatchTestUtils.java
index 7903d88f26..354b25ce5e 100644
--- a/org.eclipse.jdt.compiler.apt.tests/src/org/eclipse/jdt/compiler/apt/tests/BatchTestUtils.java
+++ b/org.eclipse.jdt.compiler.apt.tests/src/org/eclipse/jdt/compiler/apt/tests/BatchTestUtils.java
@@ -434,7 +434,7 @@ public class BatchTestUtils {
File processorJar = new File(_processorJarPath);
junit.framework.TestCase.assertTrue("Couldn't find processor jar at " + processorJar.getAbsolutePath(), processorJar.exists());
- ServiceLoader<JavaCompiler> javaCompilerLoader = ServiceLoader.load(JavaCompiler.class);//, EclipseCompiler.class.getClassLoader());
+ ServiceLoader<JavaCompiler> javaCompilerLoader = ServiceLoader.load(JavaCompiler.class, BatchTestUtils.class.getClassLoader());
Class<?> c = null;
try {
c = Class.forName("org.eclipse.jdt.internal.compiler.tool.EclipseCompiler");

Back to the top