summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2008-10-29 20:27:36 +0000
committerwtc%google.com <devnull@localhost>2008-10-29 20:27:36 +0000
commit22cc970d9d0db62d108246fd04e5cd67742c62de (patch)
tree400d6c3edf58505ef222f3c0f432759d2b252818
parent42404113735f2d1aa32d34e033da55a26b48a60b (diff)
downloadnspr-hg-22cc970d9d0db62d108246fd04e5cd67742c62de.tar.gz
Bug 462178: fixed typos ("errno" or "error code" should be "exit status").
r=christophe.ravel.
-rwxr-xr-xpr/tests/runtests.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/pr/tests/runtests.pl b/pr/tests/runtests.pl
index 34971ef4..990df776 100755
--- a/pr/tests/runtests.pl
+++ b/pr/tests/runtests.pl
@@ -132,7 +132,7 @@ $lstatus = shift;
$now = getTime;
# Full output
print "\nEND TEST: $lprog ($now)\n";
- print "TEST STATUS: $lprog = $str_status (errno $lstatus)\n";
+ print "TEST STATUS: $lprog = $str_status (exit status $lstatus)\n";
print "--------------------------------------------------\n\n";
# Summary output
print OF "\t\t\t$str_status\n";
@@ -246,9 +246,9 @@ $prog = shift; # Program to test
if ( $retwait == 0) {
# the prog didn't finish after the timeout: kill
$ProcessObj->Kill($status);
- print "Timeout ! Process killed with error code $status\n";
+ print "Timeout ! Process killed with exit status $status\n";
} else {
- # the prog finished before the timeout: get exit code
+ # the prog finished before the timeout: get exit status
$ProcessObj->GetExitCode($status);
}
print_end($prog,$status);