diff options
author | Roel Spilker <r.spilker@gmail.com> | 2021-03-19 04:13:37 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2021-03-19 04:13:37 +0100 |
commit | fccf57a2a531ae0fe9e7c0d1a1da54b8357131f5 (patch) | |
tree | 0da8518faade85760c24960cb2c8853e3c800d02 /test/core/src/lombok | |
parent | d28027310fb15533c53a82d14b7e0a67a4d5e4e3 (diff) | |
download | lombok-fccf57a2a531ae0fe9e7c0d1a1da54b8357131f5.tar.gz lombok-fccf57a2a531ae0fe9e7c0d1a1da54b8357131f5.tar.bz2 lombok-fccf57a2a531ae0fe9e7c0d1a1da54b8357131f5.zip |
fix test stub dependencies for ecj
Diffstat (limited to 'test/core/src/lombok')
-rw-r--r-- | test/core/src/lombok/RunTestsViaEcj.java | 1 |
1 files changed, 1 insertions, 0 deletions
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()) { |