From 9b2ec950283c8251df6dc3668bcbc6590bb83685 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 9 Nov 2009 19:33:14 +0000 Subject: [PATCH] [275193] A typo slipped in. The default gdbserver should be "gdbserver" and not "gdbserver.7.1" which does not exist yet --- .../org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java index 9b051b6ff94..a07752930bf 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java @@ -74,7 +74,7 @@ public class BaseTestCase { } // Set these up in case we will be running Remote tests. They will be ignored if we don't - attrs.put(ATTR_DEBUG_SERVER_NAME, "gdbserver.7.1"); + attrs.put(ATTR_DEBUG_SERVER_NAME, "gdbserver"); attrs.put(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP, true); attrs.put(IGDBLaunchConfigurationConstants.ATTR_HOST, "localhost"); attrs.put(IGDBLaunchConfigurationConstants.ATTR_PORT, "9999");