Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalgorzata Janczarska2013-03-26 14:35:15 +0000
committerMalgorzata Janczarska2013-03-26 14:35:15 +0000
commitd0417880cba977d507e643fec163c6bf0ee7c8ae (patch)
tree918cf44031ea5d8eec61c50b2e08d816db03d0b7
parenta50fc819d7839768bab6e431ed337b2d2300dbe0 (diff)
downloadeclipse.platform.team-d0417880cba977d507e643fec163c6bf0ee7c8ae.tar.gz
eclipse.platform.team-d0417880cba977d507e643fec163c6bf0ee7c8ae.tar.xz
eclipse.platform.team-d0417880cba977d507e643fec163c6bf0ee7c8ae.zip
Bug 403311 - [NET] testSimpleHost test fail on Windows 7 - Disable test
-rw-r--r--tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java b/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java
index 3f3cd44ab..5a68028cc 100644
--- a/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java
+++ b/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2012 IBM Corporation and others.
+ * Copyright (c) 2007, 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
@@ -27,7 +27,6 @@ import org.eclipse.core.internal.net.ProxyType;
import org.eclipse.core.net.proxy.IProxyData;
import org.eclipse.core.net.proxy.IProxyService;
import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.Platform;
public class NetTest extends TestCase {
@@ -290,11 +289,8 @@ public class NetTest extends TestCase {
assertProxyDataEqual(data);
}
- public void testSimpleHost() throws CoreException {
-
- //TODO test disabled for Window, see Bug 403311
- if(Platform.getOS().equals(Platform.OS_WIN32))
- return;
+ //TODO test disabled, see Bug 403311
+ public void _testSimpleHost() throws CoreException {
setDataTest(IProxyData.HTTP_PROXY_TYPE);
setDataTest(IProxyData.HTTPS_PROXY_TYPE);

Back to the top