1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 456942 - [junit] GDB does not report thread names in remote mode

Change-Id: I9ad3eefa715326ce6cc15f384cb13bbfd410f8db
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/39142
This commit is contained in:
Marc Khouzam 2015-01-07 11:27:38 -05:00
parent 5beb56ed69
commit eb66a8a2ee

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2014 Ericsson and others.
* Copyright (c) 2011, 2015 Ericsson 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
@ -23,11 +23,10 @@ public class GDBProcessesTest_7_3 extends GDBProcessesTest_7_2 {
setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_3);
}
/*
* Thread names are reported starting with gdb 7.3, except on Windows.
*/
@Override
protected boolean threadNamesSupported() {
return !runningOnWindows();
// Thread names are reported starting with gdb 7.3, except on Windows
// and not for remote sessions.
return !runningOnWindows() && !isRemoteSession();
}
}