diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-11-29 15:59:46 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-11-29 15:59:46 +0100 |
commit | bf99ade6b3bbb812cf2ef1b814e82771e5925cbb (patch) | |
tree | bf9b25b9a19f06a554d25dcdeb718d3fe44cc580 /scripts/LocalDriver.py | |
parent | Fix UWP test dependencies (diff) | |
download | ice-bf99ade6b3bbb812cf2ef1b814e82771e5925cbb.tar.bz2 ice-bf99ade6b3bbb812cf2ef1b814e82771e5925cbb.tar.xz ice-bf99ade6b3bbb812cf2ef1b814e82771e5925cbb.zip |
Build Slice/keyword test with the Objective-C arc-shared configuration
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index e71b7b5facb..126c3079035 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -391,7 +391,7 @@ class LocalDriver(Driver): print("Ran {0} tests in {1} minutes {2:02.2f} seconds".format(len(results), m, s)) else: print("Ran {0} tests in {1:02.2f} seconds".format(len(results), s)) - if(len(failures) > 0): + if len(failures) > 0: print("{0} suceeded and {1} failed:".format(len(results) - len(failures), len(failures))) for r in failures: print("- {0}".format(r.testsuite)) @@ -403,7 +403,6 @@ class LocalDriver(Driver): print(" [...]") for i in range(max(4, len(lines) - 8), len(lines)): print(" " + lines[i]) - else: print("{0} suceeded".format(len(results))) |