Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2013-10-17 11:07:55 +0000
committerSteffen Pingel2013-10-17 11:13:52 +0000
commit6ed092824aa9557c09743d9b63df7afcefcef1bc (patch)
treef1b210f83d1d05777559bd25b9bf9154257639f8
parent4796b36ba17d26eb38797aef1af47967f69a04cd (diff)
downloadorg.eclipse.mylyn-6ed092824aa9557c09743d9b63df7afcefcef1bc.tar.gz
org.eclipse.mylyn-6ed092824aa9557c09743d9b63df7afcefcef1bc.tar.xz
org.eclipse.mylyn-6ed092824aa9557c09743d9b63df7afcefcef1bc.zip
avoid nesting managed suites
Nesting ManagedTestSuite causes duplication in the test output and can cause side effects with the test timeout watcher. Change-Id: Icf860ea746412b6610185e549d191e0205bb1a09
-rw-r--r--org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java b/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java
index 5fd89364..c982c05a 100644
--- a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java
+++ b/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllNonConnectorTests.java
@@ -48,7 +48,7 @@ public class AllNonConnectorTests {
static void addTests(TestSuite suite, TestConfiguration configuration) {
suite.addTest(AllIntegrationTests.suite());
- suite.addTest(AllCommonsTests.suite());
+ suite.addTest(AllCommonsTests.suite(configuration));
suite.addTest(AllNotificationsTests.suite());
suite.addTest(AllActivityTests.suite());
suite.addTest(AllContextTests.suite());
@@ -58,7 +58,7 @@ public class AllNonConnectorTests {
suite.addTest(AllCdtTests.suite());
suite.addTest(AllMonitorTests.suite());
suite.addTest(AllIdeTests.suite());
- suite.addTest(AllTasksTests.suite());
+ suite.addTest(AllTasksTests.suite(configuration));
suite.addTest(AllBuildsTests.suite());
suite.addTest(AllReviewsTests.suite());
suite.addTest(AllResourcesTests.suite());

Back to the top