summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2006-03-06 11:32:02 +0000
committeraclement <aclement>2006-03-06 11:32:02 +0000
commitd7424a46cd2dc56a52d3556b7247f07b6e9379d6 (patch)
tree421ffb19b8e39fcbd483c3d7507e98e1ee6d6b3d /tests
parent7c9dbb297ebbd5c7a48301137ba78d4b7a235c79 (diff)
downloadaspectj-d7424a46cd2dc56a52d3556b7247f07b6e9379d6.tar.gz
aspectj-d7424a46cd2dc56a52d3556b7247f07b6e9379d6.zip
129163: first part: perclause hashcode/equals
Diffstat (limited to 'tests')
-rw-r--r--tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
index af2f9b57b..4ec1144f2 100644
--- a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
+++ b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
@@ -316,7 +316,7 @@ public class MultiProjectIncrementalTests extends AjdeInteractionTestbed {
checkForError("only abstract aspects can have type parameters");
alter("PR125405","inc2");
build("PR125405");
- checkCompileWeaveCount(2,1);
+ checkCompileWeaveCount(1,1);
assertTrue("Should be no errors, but got "+MyTaskListManager.getErrorMessages(),MyTaskListManager.getErrorMessages().size()==0);
}
@@ -560,7 +560,10 @@ public class MultiProjectIncrementalTests extends AjdeInteractionTestbed {
build("PR113257");
alter("PR113257","inc1");
build("PR113257");
- checkWasFullBuild(); // back to the source
+ // THIS should be a full build, however, so that the patches
+ // for bug 129163 can be applied incrementally have changed this...
+ //checkWasFullBuild(); // back to the source
+ checkWasntFullBuild();
alter("PR113257","inc1");
build("PR113257");
}
@@ -570,7 +573,10 @@ public class MultiProjectIncrementalTests extends AjdeInteractionTestbed {
build("PR123612");
alter("PR123612","inc1");
build("PR123612");
- checkWasFullBuild(); // back to the source
+ // THIS should be a full build, however, so that the patches
+ // for bug 129163 can be applied incrementally have changed this...
+ //checkWasFullBuild(); // back to the source
+ checkWasntFullBuild();
}