From 54bb3f036637b3c698294490bb10572039cb0f06 Mon Sep 17 00:00:00 2001 From: aclement Date: Tue, 11 Mar 2008 16:09:47 +0000 Subject: [PATCH] 221427: improved output --- .../incremental/tools/AjdeInteractionTestbed.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java index 8c75fd609..f27535a2a 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java @@ -273,7 +273,7 @@ public class AjdeInteractionTestbed extends TestCase { * Summary report on what happened in the most recent build */ public void printBuildReport(String projectName) { - System.out.println("\n============== BUILD REPORT ================="); + System.out.println("\n====== BUILD REPORT (Project "+projectName+") ==========="); System.out.println("Build took: "+getTimeTakenForBuild(projectName)+"ms"); List compiled=getCompiledFiles(projectName); System.out.println("Compiled: "+compiled.size()+" files"); @@ -369,7 +369,9 @@ public class AjdeInteractionTestbed extends TestCase { public boolean pathChange = false; public void pathChangeDetected() {pathChange = true;} public void aboutToCompareClasspaths(List oldClasspath, List newClasspath) {} - public void detectedClassChangeInThisDir(File f) {} + public void detectedClassChangeInThisDir(File f) { + recordDecision("Detected class change in this directory: "+f.toString()); + } public void detectedAspectDeleted(File f) { detectedDeletions.add(f.toString()); -- 2.39.5