From 0770532f51160363e57250dbc26375c02cee7612 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Fri, 17 Oct 2014 12:49:29 -0400 Subject: [PATCH] Turn off GDB traces now that intermitted failure have been fixed. Signed-off-by: Marc Khouzam --- .../gdb/tests/GDBConsoleBreakpointsTest.java | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/GDBConsoleBreakpointsTest.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/GDBConsoleBreakpointsTest.java index cb791e4916c..8b4b5641f34 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/GDBConsoleBreakpointsTest.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/GDBConsoleBreakpointsTest.java @@ -32,7 +32,6 @@ import org.eclipse.cdt.dsf.debug.service.IBreakpoints.IBreakpointsRemovedEvent; import org.eclipse.cdt.dsf.debug.service.IBreakpoints.IBreakpointsTargetDMContext; import org.eclipse.cdt.dsf.debug.service.IBreakpoints.IBreakpointsUpdatedEvent; import org.eclipse.cdt.dsf.debug.service.IRunControl.IContainerDMContext; -import org.eclipse.cdt.dsf.gdb.internal.GdbDebugOptions; import org.eclipse.cdt.dsf.gdb.service.command.IGDBControl; import org.eclipse.cdt.dsf.mi.service.command.output.MIBreakListInfo; import org.eclipse.cdt.dsf.mi.service.command.output.MIBreakpoint; @@ -55,10 +54,8 @@ import org.eclipse.debug.core.DebugPlugin; import org.eclipse.debug.core.IBreakpointManager; import org.eclipse.debug.core.model.IBreakpoint; import org.junit.After; -import org.junit.AfterClass; import org.junit.Assert; import org.junit.Before; -import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; @@ -70,20 +67,6 @@ import org.junit.runner.RunWith; @RunWith(BackgroundRunner.class) public class GDBConsoleBreakpointsTest extends BaseTestCase { - private static boolean fPreviousTraceState; - - @BeforeClass - public static void EnableTraces() { - fPreviousTraceState = GdbDebugOptions.DEBUG; - GdbDebugOptions.DEBUG = true; - } - - @AfterClass - public static void DisableTraces() { - GdbDebugOptions.DEBUG = fPreviousTraceState; - } - - final static private int DEFAULT_TIMEOUT = 20000; final static private TimeUnit DEFAULT_TIME_UNIT = TimeUnit.MILLISECONDS;