summaryrefslogtreecommitdiffstats
path: root/runtest.py
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2019-07-20 21:18:19 (GMT)
committerMats Wichmann <mats@linux.com>2019-08-02 12:56:12 (GMT)
commitc5ccc294306f1cedae2feb4f2df55e99d02905d9 (patch)
treeccdf6c6b73cd48b535eaad5633928b02442fe180 /runtest.py
parentf18e32cbc13d1226a3df16856aab355f1995174b (diff)
downloadSCons-c5ccc294306f1cedae2feb4f2df55e99d02905d9.zip
SCons-c5ccc294306f1cedae2feb4f2df55e99d02905d9.tar.gz
SCons-c5ccc294306f1cedae2feb4f2df55e99d02905d9.tar.bz2
[PR #3411] fix typo spotted by sider CI
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'runtest.py')
-rwxr-xr-xruntest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtest.py b/runtest.py
index 25c92bd..464b593 100755
--- a/runtest.py
+++ b/runtest.py
@@ -31,8 +31,8 @@ Options:
-n --no-exec No execute, just print command lines.
--nopipefiles Do not use the "file pipe" workaround for Popen()
for starting tests. WARNING: use only when too much
- file traffic is giving you trouble AND you can be
- sure that none of your tests create output >65K
+ file traffic is giving you trouble AND you can be
+ sure that none of your tests create output >65K
chars! You might run into some deadlocks else.
-o --output FILE Save the output from a test run to the log file.
-P PYTHON Use the specified Python interpreter.
@@ -678,7 +678,7 @@ else:
tests.extend(unittests)
tests.extend(endtests)
tests.sort()
-
+
if not tests:
sys.stderr.write(usagestr + """
runtest.py: No tests were found.
@@ -737,7 +737,7 @@ def log_result(t, io_lock=None):
""" log the result of a test.
"log" in this case means writing to stdout. Since we might be
- called from from any of several diffrent threads (multi-job run),
+ called from from any of several different threads (multi-job run),
we need to lock access to the log to avoid interleaving. The same
would apply if output was a file.