From 355503f7469a4661dcd60da69d8118710cd7907f Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Tue, 23 Dec 2014 09:24:38 -0500 Subject: [PATCH] Typos Change-Id: I78bd2f2f640dcac283bf0bc4259d6acf3080a3c2 Signed-off-by: Marc Khouzam --- .../OperationsWhileTargetIsRunningTest.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/OperationsWhileTargetIsRunningTest.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/OperationsWhileTargetIsRunningTest.java index 034c690b15f..27bd1462920 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/OperationsWhileTargetIsRunningTest.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/OperationsWhileTargetIsRunningTest.java @@ -108,7 +108,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase { /** * 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 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 - * with the option to kill GDB after the process terminate disabled. + * with the option to kill GDB after the process terminates, disabled. */ @Test 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 - * with the option to kill GDB after the process terminate enabled. + * with the option to kill GDB after the process terminates, enabled. */ @Test public void terminateWhileTargetRunningKillGDB() throws Throwable { @@ -185,7 +185,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase { ICommandControlShutdownDMEvent.class); // 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() { @Override 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 - * with the option to kill GDB after the process terminate disabled. + * with the option to kill GDB after the process terminates, disabled. */ @Test 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 - * with the option to kill GDB after the process terminate enabled. + * with the option to kill GDB after the process terminates, enabled. */ @Test public void detachWhileTargetRunningKillGDB() throws Throwable { @@ -275,7 +275,7 @@ public class OperationsWhileTargetIsRunningTest extends BaseTestCase { ICommandControlShutdownDMEvent.class); // 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() { @Override 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 - * with the option to kill GDB after the process terminate disabled. + * with the option to kill GDB after the process terminates, disabled. */ @Test public void detachWhileTargetRunningGDBAlive() throws Throwable {