From cd970993e80b57eceabc7a8d66805d48038e99ec Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 2 Oct 2018 04:01:48 +0200 Subject: [buildscript] addition of a test task that runs faster; don’t use it unless you know what you’re doing as it skips a few important steps. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.xml | 8 +++++--- test/core/src/lombok/AbstractRunTests.java | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/build.xml b/build.xml index ce7736ab..8fbce893 100644 --- a/build.xml +++ b/build.xml @@ -680,7 +680,9 @@ You can also create your own by writing a 'testenvironment.properties' file. The - + + + @@ -697,7 +699,7 @@ You can also create your own by writing a 'testenvironment.properties' file. The - + Running test suite in JDK9+ mode @@ -732,7 +734,7 @@ You can also create your own by writing a 'testenvironment.properties' file. The - + Running test suite in JDK6-8 mode diff --git a/test/core/src/lombok/AbstractRunTests.java b/test/core/src/lombok/AbstractRunTests.java index f93fbe27..fc05aea2 100644 --- a/test/core/src/lombok/AbstractRunTests.java +++ b/test/core/src/lombok/AbstractRunTests.java @@ -197,7 +197,7 @@ public abstract class AbstractRunTests { } } - @SuppressWarnings("null") /* eclipse bug; it falsely thinks stuffAc will always be null or some such hogwash. */ + @SuppressWarnings("null") /* eclipse bug workaround; it falsely thinks stuffAc will always be null. */ private static void compareMessages(String name, LombokImmutableList expected, LinkedHashSet actual) { Iterator expectedIterator = expected.iterator(); Iterator actualIterator = actual.iterator(); -- cgit