From fccf57a2a531ae0fe9e7c0d1a1da54b8357131f5 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Fri, 19 Mar 2021 04:13:37 +0100 Subject: fix test stub dependencies for ecj --- test/core/src/lombok/RunTestsViaEcj.java | 1 + 1 file changed, 1 insertion(+) diff --git a/test/core/src/lombok/RunTestsViaEcj.java b/test/core/src/lombok/RunTestsViaEcj.java index 7ebc52bb..995f4a69 100644 --- a/test/core/src/lombok/RunTestsViaEcj.java +++ b/test/core/src/lombok/RunTestsViaEcj.java @@ -228,6 +228,7 @@ public class RunTestsViaEcj extends AbstractRunTests { } if (new File("bin/main").exists()) classpath.add("bin/main"); classpath.add("dist/lombok.jar"); + classpath.add("build/teststubs"); if (bootRuntimePath == null || bootRuntimePath.isEmpty()) throw new IllegalStateException("System property delombok.bootclasspath is not set; set it to the rt of java6 or java8"); classpath.add(bootRuntimePath); for (File f : new File("lib/test").listFiles()) { -- cgit