From: Francis Dupont Date: Sat, 28 Feb 2015 01:01:50 +0000 (+0100) Subject: [master] spelling X-Git-Tag: trac3733_base~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9f1dea2f2274be7f56f12d8a548dc643f84c205;p=thirdparty%2Fkea.git [master] spelling --- diff --git a/src/lib/util/tests/process_spawn_app.sh.in b/src/lib/util/tests/process_spawn_app.sh.in index 5ab0d0834c..eea7805f35 100755 --- a/src/lib/util/tests/process_spawn_app.sh.in +++ b/src/lib/util/tests/process_spawn_app.sh.in @@ -23,7 +23,7 @@ # # In particular, they check if the class correctly records the exit code # returned. The exit code returned is controlled by the caller. It is -# possible to explictily specify the exit code to be returned using +# possible to explicitly specify the exit code to be returned using # the command line options. It is also possible to specify that the # exit code is "unique" for the process, so as the test can check # that two distinct processes spawned by the same ProcessSpawn diff --git a/src/lib/util/tests/process_spawn_unittest.cc b/src/lib/util/tests/process_spawn_unittest.cc index e29507f499..a4650c3f6c 100644 --- a/src/lib/util/tests/process_spawn_unittest.cc +++ b/src/lib/util/tests/process_spawn_unittest.cc @@ -87,7 +87,7 @@ TEST(ProcessSpawn, spawnTwoProcesses) { EXPECT_NE(process.getExitStatus(pid1), process.getExitStatus(pid2)); - // Clear the status of the first process. An atttempt to get the status + // Clear the status of the first process. An attempt to get the status // for the cleared process should result in exception. But, there should // be no exception for the second process. process.clearStatus(pid1); @@ -128,9 +128,9 @@ TEST(ProcessSpawn, invalidExecutable) { // returned. TEST(ProcessSpawn, getCommandLine) { // Note that cases below are enclosed in separate scopes to make - // sure that the ProcessSpawn object is destructed before a new + // sure that the ProcessSpawn object is destroyed before a new // object is created. Current implementation doesn't allow for - // having two ProcessSpawn objects simulatneously as they will + // having two ProcessSpawn objects simultaneously as they will // both try to allocate a signal handler for SIGCHLD. { // Case 1: arguments present.