diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-21 19:07:21 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-21 19:07:21 +0200 |
commit | e25eb5e693f49e067bd9acfc9d284e82988980f1 (patch) | |
tree | 643db3ba14598605fd283cf76531c9777c5e7d1e /scripts/LocalDriver.py | |
parent | Fixed ICE-8132 - Ice/slicing/exceptions failure with UWP/SSL (diff) | |
download | ice-e25eb5e693f49e067bd9acfc9d284e82988980f1.tar.bz2 ice-e25eb5e693f49e067bd9acfc9d284e82988980f1.tar.xz ice-e25eb5e693f49e067bd9acfc9d284e82988980f1.zip |
Fixed ICE-8135 - added timestamps to test run
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 334b32391e9..af6efbd2739 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -7,7 +7,7 @@ # # ********************************************************************** -import sys, os +import sys, os, time from Util import * # @@ -508,7 +508,7 @@ class LocalDriver(Driver): current.writeln("skipped, no server available for `{0}' mapping".format(cross)) continue - current.writeln("[ running {0} test ]".format(current.testcase)) + current.writeln("[ running {0} test - {1} ]".format(current.testcase, time.strftime("%x %X"))) if not self.all: current.config = current.config.cloneRunnable(current) confStr = str(current.config) @@ -531,7 +531,7 @@ class LocalDriver(Driver): def runTestCase(self, current): if not self.cross and not self.allCross: if not current.testcase.getParent(): - current.writeln("[ running {0} test ]".format(current.testcase)) + current.writeln("[ running {0} test - {1} ]".format(current.testcase, time.strftime("%x %X"))) if not self.all: current.config = current.config.cloneRunnable(current) confStr = str(current.config) |