aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-08-08 12:15:11 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-08-08 12:15:11 +0700
commit18fd62a4e35fd582935265656ccffce0f91373ad (patch)
treea7c0e76b315568eebe19fffccc75292fa47f01b3
parente18f5dd41b3f390883d8d127b086a3f58f929e7e (diff)
downloadaspectj-18fd62a4e35fd582935265656ccffce0f91373ad.tar.gz
aspectj-18fd62a4e35fd582935265656ccffce0f91373ad.zip
Remove logging dots per test step in AjcTest.runTest
Methods AjcTest.runTest was logging something like "TEST: ...." (4 dots), i.e. one dot per performed test step. Not only did this not add much value, but due to usage of PrintStream.print for line continuation it also messed up test step logging by scattering seemingly random dot characters across test step logs. This looked quite ugly, so I simply removed it. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
-rw-r--r--testing/src/test/java/org/aspectj/testing/AjcTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/testing/src/test/java/org/aspectj/testing/AjcTest.java b/testing/src/test/java/org/aspectj/testing/AjcTest.java
index cf356723e..5ae803205 100644
--- a/testing/src/test/java/org/aspectj/testing/AjcTest.java
+++ b/testing/src/test/java/org/aspectj/testing/AjcTest.java
@@ -54,10 +54,9 @@ public class AjcTest {
public boolean runTest(AjcTestCase testCase) {
if (!canRunOnThisVM()) return false;
try {
- System.out.print("TEST: " + getTitle() + "\t");
+ System.out.println("TEST: " + getTitle());
for (ITestStep step: testSteps) {
step.setBaseDir(getDir());
- System.out.print(".");
step.execute(testCase);
}
} finally {