diff options
author | Joe George <joe@zeroc.com> | 2016-12-07 15:05:37 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-12-07 15:05:37 -0500 |
commit | 3f12ac6b40f0b8142bf2f70bc4596fc0d2a6f910 (patch) | |
tree | ab8b87e1bfc1178feb4e479559e022e518fc66c0 /scripts/LocalDriver.py | |
parent | Additional fix for automated test failures (diff) | |
download | ice-3f12ac6b40f0b8142bf2f70bc4596fc0d2a6f910.tar.bz2 ice-3f12ac6b40f0b8142bf2f70bc4596fc0d2a6f910.tar.xz ice-3f12ac6b40f0b8142bf2f70bc4596fc0d2a6f910.zip |
Fix some typos
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index 799b1182f99..30003536088 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -75,7 +75,7 @@ class Executor: self.queueLength -= 1 # - # Worker threads dequeue and run testsuites. They push resuts to the results + # Worker threads dequeue and run testsuites. They push results to the results # queue. The thread stops when there are no more testsuite to dequeue. # resultList = [] @@ -390,7 +390,7 @@ class LocalDriver(Driver): else: print("Ran {0} tests in {1:02.2f} seconds".format(len(results), s)) if len(failures) > 0: - print("{0} suceeded and {1} failed:".format(len(results) - len(failures), len(failures))) + print("{0} succeeded and {1} failed:".format(len(results) - len(failures), len(failures))) for r in failures: print("- {0}".format(r.testsuite)) for (c, ex) in r.getFailed().items(): @@ -402,7 +402,7 @@ class LocalDriver(Driver): for i in range(max(4, len(lines) - 8), len(lines)): print(" " + lines[i]) else: - print("{0} suceeded".format(len(results))) + print("{0} succeeded".format(len(results))) if not self.loop: return 1 if len(failures) > 0 else 0 |