summaryrefslogtreecommitdiff
path: root/scripts/LocalDriver.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-06-21 19:07:21 +0200
committerBenoit Foucher <benoit@zeroc.com>2017-06-21 19:07:21 +0200
commite25eb5e693f49e067bd9acfc9d284e82988980f1 (patch)
tree643db3ba14598605fd283cf76531c9777c5e7d1e /scripts/LocalDriver.py
parentFixed ICE-8132 - Ice/slicing/exceptions failure with UWP/SSL (diff)
downloadice-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.py6
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)