From 4cfb4b37ad16cc21f23e3620538893e36aa33eae Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 30 Apr 2014 23:26:24 +0200 Subject: some pretty significant changes to the build system, to try and add testing against ecj8 to the lineup, and to force compilation with the bootstrap classpath of JDK6 so that we won't accidentally add deps on things that JVM6es don't have. --- test/core/src/lombok/RunTestsViaEcj.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/core/src/lombok/RunTestsViaEcj.java b/test/core/src/lombok/RunTestsViaEcj.java index 2734eb43..8d1a8278 100644 --- a/test/core/src/lombok/RunTestsViaEcj.java +++ b/test/core/src/lombok/RunTestsViaEcj.java @@ -84,6 +84,10 @@ public class RunTestsViaEcj extends AbstractRunTests { @Override public boolean proceedOnErrors() { return false; } + + @Override public boolean ignoreAllErrors() { + return false; + } }; } -- cgit