diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-21 01:10:50 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-01-21 01:10:50 +0100 |
commit | ef60d1af001204622b428e78894c967a9aee7e91 (patch) | |
tree | ba5767291b6fa7f4ea2e17d6a8e14d1c1e8dc74a /test | |
parent | f153f1cda304d56f9b20cd5e39adf83e74067045 (diff) | |
download | lombok-ef60d1af001204622b428e78894c967a9aee7e91.tar.gz lombok-ef60d1af001204622b428e78894c967a9aee7e91.tar.bz2 lombok-ef60d1af001204622b428e78894c967a9aee7e91.zip |
* Fixed running ecj tests within eclipse
Diffstat (limited to 'test')
-rw-r--r-- | test/core/src/lombok/RunTestsViaEcj.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/core/src/lombok/RunTestsViaEcj.java b/test/core/src/lombok/RunTestsViaEcj.java index 2b83b296..74fe6e92 100644 --- a/test/core/src/lombok/RunTestsViaEcj.java +++ b/test/core/src/lombok/RunTestsViaEcj.java @@ -112,8 +112,6 @@ public class RunTestsViaEcj extends AbstractRunTests { } }; - // TODO: Create a configuration based on confLines and set this up so that this compile run will use them. - ecjCompiler.compile(new ICompilationUnit[] {sourceUnit}); CompilationResult compilationResult = compilationResult_.get(); @@ -137,6 +135,7 @@ public class RunTestsViaEcj extends AbstractRunTests { i.remove(); } } + classpath.add("bin"); classpath.add("dist/lombok.jar"); classpath.add("lib/test/commons-logging-commons-logging.jar"); classpath.add("lib/test/org.slf4j-slf4j-api.jar"); |