aboutsummaryrefslogtreecommitdiffstats
path: root/run-all-junit-tests/testsrc
diff options
context:
space:
mode:
Diffstat (limited to 'run-all-junit-tests/testsrc')
-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();
}
}