Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2010-12-14 14:38:47 +0000
committerTomasz Zarna2010-12-14 14:38:47 +0000
commit5653dbc6e52728838e8e6eb071ee41cf93ffe1af (patch)
tree61a27f80ffae9d486c936ad049c5b2c9d358f943 /tests/org.eclipse.team.tests.cvs.core
parentb0eb71570f385549365478e07f865a860918a1ac (diff)
downloadeclipse.platform.team-5653dbc6e52728838e8e6eb071ee41cf93ffe1af.tar.gz
eclipse.platform.team-5653dbc6e52728838e8e6eb071ee41cf93ffe1af.tar.xz
eclipse.platform.team-5653dbc6e52728838e8e6eb071ee41cf93ffe1af.zip
bug 332006: [Tests] AllCoreTests have been "temporarily" disabled on Windows in 2008
Diffstat (limited to 'tests/org.eclipse.team.tests.cvs.core')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/AllCoreTests.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/AllCoreTests.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/AllCoreTests.java
index d2d748ac6..a5cbcb1b4 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/AllCoreTests.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/AllCoreTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 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
@@ -14,7 +14,6 @@ import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
-import org.eclipse.core.runtime.Platform;
import org.eclipse.team.tests.ccvs.core.cvsresources.AllTestsCVSResources;
/**
@@ -32,10 +31,7 @@ public class AllCoreTests extends EclipseTest {
public static Test suite() {
TestSuite suite = new TestSuite();
- if (!Platform.getOS().equals(Platform.OS_WIN32)) {
- suite.addTest(AllTestsCVSResources.suite());
- return new CVSTestSetup(suite);
- }
+ suite.addTest(AllTestsCVSResources.suite());
return new TestSetup(suite);
}
}

Back to the top