1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 23:35:48 +02:00
Change-Id: I78bd2f2f640dcac283bf0bc4259d6acf3080a3c2
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2014-12-23 09:24:38 -05:00
parent 1681eb8676
commit 355503f746

View file

@ -108,7 +108,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
/** /**
* Test that the restart operation works properly while the target is running, and * Test that the restart operation works properly while the target is running, and
* with the option to kill GDB after the process terminate enabled. * with the option to kill GDB after the process terminates, enabled.
*/ */
@Test @Test
public void restartWhileTargetRunningKillGDB() throws Throwable { public void restartWhileTargetRunningKillGDB() throws Throwable {
@ -138,7 +138,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
/** /**
* Test that the restart operation works properly while the target is running, and * Test that the restart operation works properly while the target is running, and
* with the option to kill GDB after the process terminate disabled. * with the option to kill GDB after the process terminates, disabled.
*/ */
@Test @Test
public void restartWhileTargetRunningGDBAlive() throws Throwable { public void restartWhileTargetRunningGDBAlive() throws Throwable {
@ -168,7 +168,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
/** /**
* Test that the terminate operation works properly while the target is running, and * Test that the terminate operation works properly while the target is running, and
* with the option to kill GDB after the process terminate enabled. * with the option to kill GDB after the process terminates, enabled.
*/ */
@Test @Test
public void terminateWhileTargetRunningKillGDB() throws Throwable { public void terminateWhileTargetRunningKillGDB() throws Throwable {
@ -185,7 +185,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
ICommandControlShutdownDMEvent.class); ICommandControlShutdownDMEvent.class);
// Don't use a query here. The terminate, because it kills GDB, may not return right away // Don't use a query here. The terminate, because it kills GDB, may not return right away
// But that is ok because we wait for a shutdown event right after // but that is ok because we wait for a shutdown event right after
Runnable runnable = new Runnable() { Runnable runnable = new Runnable() {
@Override @Override
public void run() { public void run() {
@ -206,7 +206,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
/** /**
* Test that the terminate operation works properly while the target is running, and * Test that the terminate operation works properly while the target is running, and
* with the option to kill GDB after the process terminate disabled. * with the option to kill GDB after the process terminates, disabled.
*/ */
@Test @Test
public void terminateWhileTargetRunningKeepGDBAlive() throws Throwable { public void terminateWhileTargetRunningKeepGDBAlive() throws Throwable {
@ -258,7 +258,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
/** /**
* Test that the detach operation works properly while the target is running, and * Test that the detach operation works properly while the target is running, and
* with the option to kill GDB after the process terminate enabled. * with the option to kill GDB after the process terminates, enabled.
*/ */
@Test @Test
public void detachWhileTargetRunningKillGDB() throws Throwable { public void detachWhileTargetRunningKillGDB() throws Throwable {
@ -275,7 +275,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
ICommandControlShutdownDMEvent.class); ICommandControlShutdownDMEvent.class);
// Don't use a query here. Because GDB will be killed, the call to detach may not return right away // Don't use a query here. Because GDB will be killed, the call to detach may not return right away
// But that is ok because we wait for a shutdown event right after // but that is ok because we wait for a shutdown event right after
Runnable runnable = new Runnable() { Runnable runnable = new Runnable() {
@Override @Override
public void run() { public void run() {
@ -295,7 +295,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase {
/** /**
* Test that the detach operation works properly while the target is running, and * Test that the detach operation works properly while the target is running, and
* with the option to kill GDB after the process terminate disabled. * with the option to kill GDB after the process terminates, disabled.
*/ */
@Test @Test
public void detachWhileTargetRunningGDBAlive() throws Throwable { public void detachWhileTargetRunningGDBAlive() throws Throwable {