Bug 488350 - [Tests] Cannot Connect to VM failing on Mac

Change-Id: I86eddd0b27e819903d5a02a7d30d8da72b9a65d6
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 af7ce5f..c2c0be1 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 @@
 		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");