]> source.dussan.org Git - aspectj.git/commitdiff
221427: improved output
authoraclement <aclement>
Tue, 11 Mar 2008 16:09:47 +0000 (16:09 +0000)
committeraclement <aclement>
Tue, 11 Mar 2008 16:09:47 +0000 (16:09 +0000)
tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java

index 8c75fd609dca18cf8535d9071f4c0b3e6e4d27c9..f27535a2afd30af4e52a5e9549386eae32f68270 100644 (file)
@@ -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());