aboutsummaryrefslogtreecommitdiffstats
path: root/tests/harness
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-20 18:37:22 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-03-21 02:01:18 +0700
commita1867b05ba6443d32abc4049c26b92fc226d6f78 (patch)
tree451e969e0aa7c5998d84cdce0d43f3f1a32d1461 /tests/harness
parentfa8369ebb82cd9668943173b4f04868b55ab4260 (diff)
downloadaspectj-a1867b05ba6443d32abc4049c26b92fc226d6f78.tar.gz
aspectj-a1867b05ba6443d32abc4049c26b92fc226d6f78.zip
Remove module 'run-all-junit-tests' from root POM -> speed up the build
This module must be a relic from a test runner module once existing during the Ant build era, but transferred and kept alive in the Maven build. Actually, it almost doubles build time by running virtually all tests in all modules again when doing 'mvn test' from the project root. For now I only removed the module from the root POM, leaving behind comments there, in the module POM and in the now @Deprecated class RunTheseBeforeYouCommitTests. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/harness')
-rw-r--r--tests/harness/SystemPropertiesTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/harness/SystemPropertiesTest.java b/tests/harness/SystemPropertiesTest.java
index d02985f88..e489d4f5a 100644
--- a/tests/harness/SystemPropertiesTest.java
+++ b/tests/harness/SystemPropertiesTest.java
@@ -3,7 +3,7 @@ public class SystemPropertiesTest {
public static void main(String[] args) {
boolean pass = Boolean.getBoolean("PASS");
if (!pass) {
- throw new Error("failed to get Boolean \\\"PASS\\\"");
+ throw new Error("failed to get Boolean \"PASS\"");
}
String value = System.getProperty("name", null);
if (!"value".equals(value)) {