Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-02-24 07:09:11 +0000
committerSarika Sinha2016-02-24 07:09:11 +0000
commitaf70e1a85f9a3e80899bcdd28f59856ab9cd70e9 (patch)
tree75d276aaaa5729ecf6a7304be1de6e5153e00b4a
parent9a8a1ad5c02f6bd1c5d3f9a9c691c8e74dbc6ada (diff)
downloadeclipse.jdt.debug-af70e1a85f9a3e80899bcdd28f59856ab9cd70e9.tar.gz
eclipse.jdt.debug-af70e1a85f9a3e80899bcdd28f59856ab9cd70e9.tar.xz
eclipse.jdt.debug-af70e1a85f9a3e80899bcdd28f59856ab9cd70e9.zip
Bug 488350 - [Tests] Cannot Connect to VM failing on Mac
-rw-r--r--org.eclipse.jdt.debug.tests/console tests/org/eclipse/jdt/debug/tests/console/ConsoleTerminateAllActionTests.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.jdt.debug.tests/console tests/org/eclipse/jdt/debug/tests/console/ConsoleTerminateAllActionTests.java b/org.eclipse.jdt.debug.tests/console tests/org/eclipse/jdt/debug/tests/console/ConsoleTerminateAllActionTests.java
index af7ce5f31..c2c0be136 100644
--- a/org.eclipse.jdt.debug.tests/console tests/org/eclipse/jdt/debug/tests/console/ConsoleTerminateAllActionTests.java
+++ b/org.eclipse.jdt.debug.tests/console tests/org/eclipse/jdt/debug/tests/console/ConsoleTerminateAllActionTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2014 IBM Corporation and others.
+ * Copyright (c) 2014, 2016 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
@@ -10,6 +10,8 @@
*******************************************************************************/
package org.eclipse.jdt.debug.tests.console;
+import java.net.InetAddress;
+
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.internal.ui.commands.actions.TerminateAllActionDelegate;
import org.eclipse.jdt.debug.core.IJavaThread;
@@ -32,6 +34,14 @@ public class ConsoleTerminateAllActionTests extends AbstractDebugTest {
super(name);
}
+ /*
+ * adding the test temporarily for finding the cause
+ */
+ public void testLocalHostConnection() throws Exception {
+ InetAddress address = InetAddress.getByName("localhost");
+ assertNotNull(address);
+
+ }
public void testTerminateAll_01() throws Exception{
createLineBreakpoint(15, "TerminateAll_01");
createLineBreakpoint(15, "TerminateAll_02");

Back to the top