summaryrefslogtreecommitdiffstats
path: root/run-all-junit-tests
diff options
context:
space:
mode:
authorwisberg <wisberg>2005-06-08 23:56:24 +0000
committerwisberg <wisberg>2005-06-08 23:56:24 +0000
commit9db52cb41e1eaf83c6f281cd24b6cac634e5c3e1 (patch)
treeb296f6a78041b73c7e65528c8536717b607fe0db /run-all-junit-tests
parentcb7cd13f822303a93f1020c1ab3e92b9f0d86f5a (diff)
downloadaspectj-9db52cb41e1eaf83c6f281cd24b6cac634e5c3e1.tar.gz
aspectj-9db52cb41e1eaf83c6f281cd24b6cac634e5c3e1.zip
Module alias does not include compiler tests since tests/ does
Diffstat (limited to 'run-all-junit-tests')
-rw-r--r--run-all-junit-tests/testsrc/AllModuleTests.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/run-all-junit-tests/testsrc/AllModuleTests.java b/run-all-junit-tests/testsrc/AllModuleTests.java
index 1cce51175..b373f456a 100644
--- a/run-all-junit-tests/testsrc/AllModuleTests.java
+++ b/run-all-junit-tests/testsrc/AllModuleTests.java
@@ -13,9 +13,14 @@
import junit.framework.Test;
import junit.framework.TestCase;
+/**
+ * Alias to maintain convention for invoking JUnit from Ant
+ * by discovery of module root tests that name is *ModuleTests.
+ */
public class AllModuleTests extends TestCase {
public static Test suite() {
- return RunTheseBeforeYouCommitTests.suite();
+ // does not include compiler tests, i.e., tests/../TestsModuleTests
+ return AllTests.suite();
}
}