aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2020-12-21 17:15:21 +0100
committerRoel Spilker <r.spilker@gmail.com>2020-12-22 00:27:12 +0100
commitc9f6766b6365b72a155d701c2c5714b181e80a6e (patch)
tree4cd69fb91f7759772900dcbf60d0851e91163708
parentf17dd036384242971546bc443749ad527b8cd21c (diff)
downloadlombok-c9f6766b6365b72a155d701c2c5714b181e80a6e.tar.gz
lombok-c9f6766b6365b72a155d701c2c5714b181e80a6e.tar.bz2
lombok-c9f6766b6365b72a155d701c2c5714b181e80a6e.zip
Run tests if no exclusions match
-rw-r--r--test/core/src/lombok/LombokTestSource.java13
-rw-r--r--test/transform/resource/before/DelegateOnLocalClass.java19
2 files changed, 30 insertions, 2 deletions
diff --git a/test/core/src/lombok/LombokTestSource.java b/test/core/src/lombok/LombokTestSource.java
index e23a0f57..1498e635 100644
--- a/test/core/src/lombok/LombokTestSource.java
+++ b/test/core/src/lombok/LombokTestSource.java
@@ -65,11 +65,20 @@ public class LombokTestSource {
public boolean runOnPlatform(String platform) {
if (platforms == null || platforms.isEmpty()) return true;
+ int inclusiveCount = 0;
for (String pl : platforms) {
- if (pl.startsWith("!") && pl.regionMatches(true, 1, platform, 0, platform.length())) return false;
+ if (pl.startsWith("!")) continue;
+ inclusiveCount++;
if (pl.equalsIgnoreCase(platform)) return true;
}
- return false;
+ if (inclusiveCount == platforms.size()) {
+ return false;
+ }
+ for (String pl : platforms) {
+ if (!pl.startsWith("!")) continue;
+ if (pl.regionMatches(true, 1, platform, 0, platform.length())) return false;
+ }
+ return true;
}
public boolean versionWithinLimit(int version) {
diff --git a/test/transform/resource/before/DelegateOnLocalClass.java b/test/transform/resource/before/DelegateOnLocalClass.java
new file mode 100644
index 00000000..7376c087
--- /dev/null
+++ b/test/transform/resource/before/DelegateOnLocalClass.java
@@ -0,0 +1,19 @@
+//platform !eclipse: Requires a 'full' eclipse with intialized workspace, and we don't (yet) have that set up properly in the test run.
+//skip compare content
+//ignore: crashed javac with NPE, should be enabled when that bug is fixed
+import lombok.experimental.Delegate;
+import lombok.Getter;
+
+interface DelegateOnLocalClass {
+ void test1() {
+ class DelegateOnStatic {
+ @Delegate private final java.lang.Runnable field = null;
+ }
+ }
+
+ void test2() {
+ Runnable r = new Runnable() {
+ @Delegate private final java.lang.Runnable field = null;
+ }
+ }
+}