Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDani Megert2013-07-10 07:59:00 +0000
committerDani Megert2013-07-10 07:59:00 +0000
commitd72dbb29ec00283402b416c74afd8803d79522ab (patch)
treeb8dc2a09443d012f2377509b34a1a11698f2a722 /tests
parentbe2e8c339a0afae21d35f60524a34e06311eaa92 (diff)
downloadeclipse.platform.team-d72dbb29ec00283402b416c74afd8803d79522ab.tar.gz
eclipse.platform.team-d72dbb29ec00283402b416c74afd8803d79522ab.tar.xz
eclipse.platform.team-d72dbb29ec00283402b416c74afd8803d79522ab.zip
Disabled RepositoryRootTest/s since they are unstable (see bug 409126)
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/provider/AllTestsProvider.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/provider/AllTestsProvider.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/provider/AllTestsProvider.java
index 088227203..f69655ddb 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/provider/AllTestsProvider.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/provider/AllTestsProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2012 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -11,6 +11,7 @@
package org.eclipse.team.tests.ccvs.core.provider;
import junit.framework.Test;
import junit.framework.TestSuite;
+
import org.eclipse.team.tests.ccvs.core.CVSTestSetup;
import org.eclipse.team.tests.ccvs.core.EclipseTest;
@@ -34,7 +35,10 @@ public class AllTestsProvider extends EclipseTest {
suite.addTest(WatchEditTest.suite());
suite.addTest(LinkResourcesTest.suite());
suite.addTest(IsModifiedTests.suite());
- suite.addTest(RepositoryRootTest.suite());
+
+ // Disabled since they are unstable, see https://bugs.eclipse.org/409126
+// suite.addTest(RepositoryRootTest.suite());
+
return new CVSTestSetup(suite);
}
}

Back to the top