summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java b/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java
index 6e8d626e7..d917ee5fb 100644
--- a/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java
+++ b/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java
@@ -113,11 +113,13 @@ public class IncCompilerRun implements IAjcRun {
String path = file.getAbsolutePath();
if (!path.endsWith(clip)) {
holder.numCopies++;
+ validator.info("copying file: " + path);
} else {
doCopy = false;
path = path.substring(0, path.length()-clip.length()) + toSuffix;
File toDelete = new File(path);
if (toDelete.delete()) {
+ validator.info("deleted file: " + path);
holder.numDeletes++;
} else {
validator.fail("unable to delete file: " + path);