summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2008-03-11 16:09:47 +0000
committeraclement <aclement>2008-03-11 16:09:47 +0000
commit54bb3f036637b3c698294490bb10572039cb0f06 (patch)
tree72857c2f73086112f1b5a6792013d19ed9810521 /tests
parent3a64e7efe65ed2e50969a0270e124e822c742eee (diff)
downloadaspectj-54bb3f036637b3c698294490bb10572039cb0f06.tar.gz
aspectj-54bb3f036637b3c698294490bb10572039cb0f06.zip
221427: improved output
Diffstat (limited to 'tests')
-rw-r--r--tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java6
1 files 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());