aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authormwebster <mwebster>2006-08-09 12:53:39 +0000
committermwebster <mwebster>2006-08-09 12:53:39 +0000
commit594b441f49fd3be06e1bc1caa060194f42477f38 (patch)
treee4a8f6f524f1e421bab2ecd2884c15655730397d /tests
parent00851bff4ef25e75ae06876306aa90074da57a04 (diff)
downloadaspectj-594b441f49fd3be06e1bc1caa060194f42477f38.tar.gz
aspectj-594b441f49fd3be06e1bc1caa060194f42477f38.zip
Bug 152982 "org.aspectj Restructure - Phase 2: Move tests" (move MultiProjectIncrementalTests fromm AllTests to AllTests15 because of Java 5 dependencies)
Diffstat (limited to 'tests')
-rw-r--r--tests/src/org/aspectj/systemtest/AllTests.java2
-rw-r--r--tests/src/org/aspectj/systemtest/AllTests15.java9
2 files changed, 9 insertions, 2 deletions
diff --git a/tests/src/org/aspectj/systemtest/AllTests.java b/tests/src/org/aspectj/systemtest/AllTests.java
index f22cc1a39..2a399b1dc 100644
--- a/tests/src/org/aspectj/systemtest/AllTests.java
+++ b/tests/src/org/aspectj/systemtest/AllTests.java
@@ -18,7 +18,6 @@ import org.aspectj.systemtest.base.BaseTests;
import org.aspectj.systemtest.design.DesignTests;
import org.aspectj.systemtest.incremental.IncrementalTests;
import org.aspectj.systemtest.incremental.model.IncrementalModelTests;
-import org.aspectj.systemtest.incremental.tools.MultiProjectIncrementalTests;
import org.aspectj.systemtest.incremental.tools.OutputLocationManagerTests;
import org.aspectj.systemtest.inpath.InPathTests;
import org.aspectj.systemtest.options.OptionsTests;
@@ -44,7 +43,6 @@ public class AllTests {
suite.addTest(BaseTests.suite());
suite.addTest(DesignTests.suite());
suite.addTest(IncrementalTests.suite());
- suite.addTestSuite(MultiProjectIncrementalTests.class);
suite.addTestSuite(OutputLocationManagerTests.class);
suite.addTest(IncrementalModelTests.suite());
//suite.addTest(KnownLimitationsTests.class);
diff --git a/tests/src/org/aspectj/systemtest/AllTests15.java b/tests/src/org/aspectj/systemtest/AllTests15.java
index 3881f18d9..09ed48206 100644
--- a/tests/src/org/aspectj/systemtest/AllTests15.java
+++ b/tests/src/org/aspectj/systemtest/AllTests15.java
@@ -11,6 +11,8 @@ import org.aspectj.systemtest.ajc150.ataspectj.AtAjAnnotationGenTests;
import org.aspectj.systemtest.ajc151.AllTestsAspectJ151;
import org.aspectj.systemtest.ajc152.AllTestsAspectJ152;
import org.aspectj.systemtest.ajc153.AllTestsAspectJ153;
+import org.aspectj.systemtest.incremental.tools.MultiProjectIncrementalTests;
+import org.aspectj.systemtest.xlint.XLint5Tests;
public class AllTests15 {
@@ -23,6 +25,13 @@ public class AllTests15 {
suite.addTest(AllTestsAspectJ152.suite());
suite.addTest(AllTestsAspectJ153.suite());
suite.addTest(AtAjAnnotationGenTests.suite());
+ /* FIXME maw Many of these tests do not depend on Java 5 but they
+ * cannot be executed in Eclipse with 1.3 because of XML issues and
+ * are excluded on the build machine so moving them here loses nothing
+ * for the moment.
+ */
+ suite.addTestSuite(MultiProjectIncrementalTests.class);
+ suite.addTest(XLint5Tests.suite());
//$JUnit-END$
return suite;
}