aboutsummaryrefslogtreecommitdiff
path: root/test/configuration
diff options
context:
space:
mode:
Diffstat (limited to 'test/configuration')
-rw-r--r--test/configuration/resource/configurationRoot/out.txt45
-rw-r--r--test/configuration/src/lombok/core/configuration/TestConfiguration.java4
2 files changed, 2 insertions, 47 deletions
diff --git a/test/configuration/resource/configurationRoot/out.txt b/test/configuration/resource/configurationRoot/out.txt
index cca31c02..41ac457b 100644
--- a/test/configuration/resource/configurationRoot/out.txt
+++ b/test/configuration/resource/configurationRoot/out.txt
@@ -27,45 +27,12 @@ Configuration for:
lombok.accessors.flagUsage = ERROR
# BASE/d1/d11/lombok.config (stopped bubbling):
# 4: lombok.accessors.flagUsage = ERROR
-#
-# BASE/archives/a1.jar!d2/include.config (imported from BASE/archives/a1.jar!d1/include.config:1):
-# <'lombok.accessors.flagUsage' not mentioned>
-#
-# BASE/archives/a1.jar!d1/include.config (imported from BASE/archives/a1.jar!lombok.config:1):
-# <'lombok.accessors.flagUsage' not mentioned>
-#
-# BASE/archives/a1.jar!lombok.config (imported from BASE/d1/d11/d111/import1.config:4):
-# <'lombok.accessors.flagUsage' not mentioned>
-#
-# BASE/d1/d11/d111/import1.config (imported from BASE/d1/d11/d111/lombok.config:1):
-# <'lombok.accessors.flagUsage' not mentioned>
-#
-# BASE/archives/a2.zip!reset.config (imported from BASE/d1/d11/d111/lombok.config:2):
-# <'lombok.accessors.flagUsage' not mentioned>
-#
-# BASE/d1/d11/d111/lombok.config:
-# <'lombok.accessors.flagUsage' not mentioned>
# Generate setters that return 'this' instead of 'void' (default: false).
clear lombok.accessors.chain
# BASE/d1/d11/lombok.config (stopped bubbling):
# 3: lombok.accessors.chain = false
#
-# BASE/archives/a1.jar!d2/include.config (imported from BASE/archives/a1.jar!d1/include.config:1):
-# <'lombok.accessors.chain' not mentioned>
-#
-# BASE/archives/a1.jar!d1/include.config (imported from BASE/archives/a1.jar!lombok.config:1):
-# <'lombok.accessors.chain' not mentioned>
-#
-# BASE/archives/a1.jar!lombok.config (imported from BASE/d1/d11/d111/import1.config:4):
-# <'lombok.accessors.chain' not mentioned>
-#
-# BASE/d1/d11/d111/import1.config (imported from BASE/d1/d11/d111/lombok.config:1):
-# <'lombok.accessors.chain' not mentioned>
-#
-# BASE/archives/a2.zip!reset.config (imported from BASE/d1/d11/d111/lombok.config:2):
-# <'lombok.accessors.chain' not mentioned>
-#
# BASE/d1/d11/d111/lombok.config:
# 3: clear lombok.accessors.chain
@@ -76,22 +43,10 @@ lombok.accessors.prefix += m_
# BASE/d1/d11/lombok.config (stopped bubbling):
# 5: lombok.accessors.prefix += f
#
-# BASE/archives/a1.jar!d2/include.config (imported from BASE/archives/a1.jar!d1/include.config:1):
-# <'lombok.accessors.prefix' not mentioned>
-#
-# BASE/archives/a1.jar!d1/include.config (imported from BASE/archives/a1.jar!lombok.config:1):
-# <'lombok.accessors.prefix' not mentioned>
-#
-# BASE/archives/a1.jar!lombok.config (imported from BASE/d1/d11/d111/import1.config:4):
-# <'lombok.accessors.prefix' not mentioned>
-#
# BASE/d1/d11/d111/import1.config (imported from BASE/d1/d11/d111/lombok.config:1):
# 5: lombok.accessors.prefix += z_
# 6: lombok.accessors.prefix += f
#
-# BASE/archives/a2.zip!reset.config (imported from BASE/d1/d11/d111/lombok.config:2):
-# <'lombok.accessors.prefix' not mentioned>
-#
# BASE/d1/d11/d111/lombok.config:
# 4: lombok.accessors.prefix += m_
diff --git a/test/configuration/src/lombok/core/configuration/TestConfiguration.java b/test/configuration/src/lombok/core/configuration/TestConfiguration.java
index d2599334..377276bc 100644
--- a/test/configuration/src/lombok/core/configuration/TestConfiguration.java
+++ b/test/configuration/src/lombok/core/configuration/TestConfiguration.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2014 The Project Lombok Authors.
+ * Copyright (C) 2014-2020 The Project Lombok Authors.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -52,7 +52,7 @@ public class TestConfiguration {
PrintStream outStream = new PrintStream(rawOut);
PrintStream errStream = new PrintStream(rawErr);
- int result = new ConfigurationApp().redirectOutput(outStream, errStream).display(keys, true, paths, true);
+ int result = new ConfigurationApp().redirectOutput(outStream, errStream).display(keys, true, paths, true, false);
outStream.flush();
errStream.flush();