summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-03-04 04:34:29 +0000
committerwisberg <wisberg>2003-03-04 04:34:29 +0000
commitfa1b7922b317e1e95d22ad68c74253df28995692 (patch)
treea555667caa8960302b9ff6c52a3e90b87d2b699d /testing
parent9133e0cb0ff8d21a54579be67fa69d63c35ca2bb (diff)
downloadaspectj-fa1b7922b317e1e95d22ad68c74253df28995692.tar.gz
aspectj-fa1b7922b317e1e95d22ad68c74253df28995692.zip
info messages wrt inc-compile staging
(will not be emitted even in verbose mode until iterator (the client) is updated)
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);