Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 192038 Details for
Bug 337893
[multi-process][breakpoints] Setting breakpoints on a running target does not work with multi-process
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Tests for non-stop mode
zpatch.targetAvailTestNonStop1.txt (text/plain), 10.13 KB, created by
Marc Khouzam
on 2011-03-28 15:22:08 EDT
(
hide
)
Description:
Tests for non-stop mode
Filename:
MIME Type:
Creator:
Marc Khouzam
Created:
2011-03-28 15:22:08 EDT
Size:
10.13 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.cdt.tests.dsf.gdb >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/MIRunControlNonStopTargetAvailableTest_7_0.java >=================================================================== >RCS file: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/MIRunControlNonStopTargetAvailableTest_7_0.java >diff -N src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/MIRunControlNonStopTargetAvailableTest_7_0.java >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/MIRunControlNonStopTargetAvailableTest_7_0.java 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,27 @@ >+/******************************************************************************* >+ * Copyright (c) 2011 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 >+ * http://www.eclipse.org/legal/epl-v10.html >+ * >+ * Contributors: >+ * Ericsson AB - Initial implementation of Test cases >+ *******************************************************************************/ >+package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_0; >+ >+ >+import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants; >+import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner; >+import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants; >+import org.junit.BeforeClass; >+import org.junit.runner.RunWith; >+ >+@RunWith(BackgroundRunner.class) >+public class MIRunControlNonStopTargetAvailableTest_7_0 extends MIRunControlTargetAvailableTest_7_0 { >+ @BeforeClass >+ public static void beforeClassMethod_7_0() { >+ setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_0); >+ setLaunchAttribute(IGDBLaunchConfigurationConstants.ATTR_DEBUGGER_NON_STOP, true); >+ } >+} >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_7_0.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_7_0.java,v >retrieving revision 1.5 >diff -u -r1.5 Suite_7_0.java >--- src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_7_0.java 28 Mar 2011 17:24:51 -0000 1.5 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_7_0.java 28 Mar 2011 19:19:50 -0000 >@@ -29,6 +29,7 @@ > MIRegistersTest_7_0.class, > MIRunControlTest_7_0.class, > MIRunControlTargetAvailableTest_7_0.class, >+ MIRunControlNonStopTargetAvailableTest_7_0.class, > MIExpressionsTest_7_0.class, > MIMemoryTest_7_0.class, > MIBreakpointsTest_7_0.class, >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_Remote_7_0.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_Remote_7_0.java,v >retrieving revision 1.5 >diff -u -r1.5 Suite_Remote_7_0.java >--- src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_Remote_7_0.java 28 Mar 2011 17:24:51 -0000 1.5 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_0/Suite_Remote_7_0.java 28 Mar 2011 19:19:50 -0000 >@@ -33,6 +33,7 @@ > GDBRemoteTracepointsTest_7_0.class, > MIRegistersTest_7_0.class, > MIRunControlTargetAvailableTest_7_0.class, >+ MIRunControlNonStopTargetAvailableTest_7_0.class, > MIRunControlTest_7_0.class, > MIExpressionsTest_7_0.class, > MIMemoryTest_7_0.class, >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/MIRunControlNonStopTargetAvailableTest_7_1.java >=================================================================== >RCS file: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/MIRunControlNonStopTargetAvailableTest_7_1.java >diff -N src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/MIRunControlNonStopTargetAvailableTest_7_1.java >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/MIRunControlNonStopTargetAvailableTest_7_1.java 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,27 @@ >+/******************************************************************************* >+ * Copyright (c) 2011 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 >+ * http://www.eclipse.org/legal/epl-v10.html >+ * >+ * Contributors: >+ * Ericsson AB - Initial implementation of Test cases >+ *******************************************************************************/ >+package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_1; >+ >+ >+import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants; >+import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner; >+import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants; >+import org.junit.BeforeClass; >+import org.junit.runner.RunWith; >+ >+@RunWith(BackgroundRunner.class) >+public class MIRunControlNonStopTargetAvailableTest_7_1 extends MIRunControlTargetAvailableTest_7_1 { >+ @BeforeClass >+ public static void beforeClassMethod_7_1() { >+ setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_1); >+ setLaunchAttribute(IGDBLaunchConfigurationConstants.ATTR_DEBUGGER_NON_STOP, true); >+ } >+} >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_7_1.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_7_1.java,v >retrieving revision 1.4 >diff -u -r1.4 Suite_7_1.java >--- src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_7_1.java 28 Mar 2011 17:24:52 -0000 1.4 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_7_1.java 28 Mar 2011 19:19:50 -0000 >@@ -29,6 +29,7 @@ > MIRegistersTest_7_1.class, > MIRunControlTest_7_1.class, > MIRunControlTargetAvailableTest_7_1.class, >+ MIRunControlNonStopTargetAvailableTest_7_1.class, > MIExpressionsTest_7_1.class, > MIMemoryTest_7_1.class, > MIBreakpointsTest_7_1.class, >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_Remote_7_1.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_Remote_7_1.java,v >retrieving revision 1.3 >diff -u -r1.3 Suite_Remote_7_1.java >--- src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_Remote_7_1.java 28 Mar 2011 17:24:52 -0000 1.3 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_1/Suite_Remote_7_1.java 28 Mar 2011 19:19:50 -0000 >@@ -33,6 +33,7 @@ > GDBRemoteTracepointsTest_7_1.class, > MIRegistersTest_7_1.class, > MIRunControlTargetAvailableTest_7_1.class, >+ MIRunControlNonStopTargetAvailableTest_7_1.class, > MIRunControlTest_7_1.class, > MIExpressionsTest_7_1.class, > MIMemoryTest_7_1.class, >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/MIRunControlNonStopTargetAvailableTest_7_2.java >=================================================================== >RCS file: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/MIRunControlNonStopTargetAvailableTest_7_2.java >diff -N src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/MIRunControlNonStopTargetAvailableTest_7_2.java >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/MIRunControlNonStopTargetAvailableTest_7_2.java 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,27 @@ >+/******************************************************************************* >+ * Copyright (c) 2011 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 >+ * http://www.eclipse.org/legal/epl-v10.html >+ * >+ * Contributors: >+ * Ericsson AB - Initial implementation of Test cases >+ *******************************************************************************/ >+package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_2; >+ >+ >+import org.eclipse.cdt.dsf.gdb.IGDBLaunchConfigurationConstants; >+import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner; >+import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants; >+import org.junit.BeforeClass; >+import org.junit.runner.RunWith; >+ >+@RunWith(BackgroundRunner.class) >+public class MIRunControlNonStopTargetAvailableTest_7_2 extends MIRunControlTargetAvailableTest_7_2 { >+ @BeforeClass >+ public static void beforeClassMethod_7_2() { >+ setGdbProgramNamesLaunchAttributes(ITestConstants.SUFFIX_GDB_7_2); >+ setLaunchAttribute(IGDBLaunchConfigurationConstants.ATTR_DEBUGGER_NON_STOP, true); >+ } >+} >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_7_2.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_7_2.java,v >retrieving revision 1.4 >diff -u -r1.4 Suite_7_2.java >--- src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_7_2.java 28 Mar 2011 17:24:52 -0000 1.4 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_7_2.java 28 Mar 2011 19:19:51 -0000 >@@ -29,6 +29,7 @@ > MIRegistersTest_7_2.class, > MIRunControlTest_7_2.class, > MIRunControlTargetAvailableTest_7_2.class, >+ MIRunControlNonStopTargetAvailableTest_7_2.class, > MIExpressionsTest_7_2.class, > MIMemoryTest_7_2.class, > MIBreakpointsTest_7_2.class, >Index: src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_Remote_7_2.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_Remote_7_2.java,v >retrieving revision 1.3 >diff -u -r1.3 Suite_Remote_7_2.java >--- src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_Remote_7_2.java 28 Mar 2011 17:24:52 -0000 1.3 >+++ src/org/eclipse/cdt/tests/dsf/gdb/tests/tests_7_2/Suite_Remote_7_2.java 28 Mar 2011 19:19:51 -0000 >@@ -34,6 +34,7 @@ > MIRegistersTest_7_2.class, > MIRunControlTest_7_2.class, > MIRunControlTargetAvailableTest_7_2.class, >+ MIRunControlNonStopTargetAvailableTest_7_2.class, > MIExpressionsTest_7_2.class, > MIMemoryTest_7_2.class, > MIBreakpointsTest_7_2.class,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
marc.khouzam
:
iplog-
Actions:
View
|
Diff
Attachments on
bug 337893
:
192028
|
192029
| 192038 |
192202
|
192418
|
192419
|
192606
|
192993
|
193212