aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraclement <aclement>2008-10-04 00:28:36 +0000
committeraclement <aclement>2008-10-04 00:28:36 +0000
commit4d04de0a96703498babc71754a47df4af1992e62 (patch)
tree5a0b0cdf8b8717366d5a59b8c11fdc0195606065
parent3817c58a2bef7f5899e3295997fb82bf9a46678c (diff)
downloadaspectj-4d04de0a96703498babc71754a47df4af1992e62.tar.gz
aspectj-4d04de0a96703498babc71754a47df4af1992e62.zip
removing redundant test
-rw-r--r--tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
index 1c6e8fc03..ed09a5090 100644
--- a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
+++ b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
@@ -205,24 +205,24 @@ public class MultiProjectIncrementalTests extends AbstractMultiProjectIncrementa
}
}
- /**
- * Checking return values of the AsmManager API calls that can be invoked post incremental build that tell the caller which
- * files had their relationships altered. As well as the affected (woven) files, it is possible to query the aspects that wove
- * those files.
- */
- public void testChangesOnBuild() throws Exception {
- String p = "ChangesOnBuild";
- initialiseProject(p);
- build(p);
- // Not incremental
- checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", false);
- alter(p, "inc1");
- build(p);
- // Incremental
- checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", true);
- checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "X.java", true);
- checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "Y.java", false);
- }
+ // /**
+ // * Checking return values of the AsmManager API calls that can be invoked post incremental build that tell the caller which
+ // * files had their relationships altered. As well as the affected (woven) files, it is possible to query the aspects that wove
+ // * those files.
+ // */
+ // public void testChangesOnBuild() throws Exception {
+ // String p = "ChangesOnBuild";
+ // initialiseProject(p);
+ // build(p);
+ // // Not incremental
+ // checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", false);
+ // alter(p, "inc1");
+ // build(p);
+ // // Incremental
+ // checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", true);
+ // checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "X.java", true);
+ // checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "Y.java", false);
+ // }
public void testITDIncremental_pr192877() {
String p = "PR192877";