]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] spelling
authorFrancis Dupont <fdupont@isc.org>
Sat, 28 Feb 2015 01:01:50 +0000 (02:01 +0100)
committerFrancis Dupont <fdupont@isc.org>
Sat, 28 Feb 2015 01:01:50 +0000 (02:01 +0100)
src/lib/util/tests/process_spawn_app.sh.in
src/lib/util/tests/process_spawn_unittest.cc

index 5ab0d0834cc69b5b601e5231de55cb69604c175a..eea7805f35db12f1817732ace44d709495ba1dd4 100755 (executable)
@@ -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
index e29507f499d4218901bea12cb9778b91125b102f..a4650c3f6c5146604cc47e106eb15e3825b9ac14 100644 (file)
@@ -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.