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/Util.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/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index c7c0a67f6dc..a08fa9f8903 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1064,7 +1064,7 @@ class Process(Runnable): break except Expect.TIMEOUT: if watchDog and watchDog.timedOut(timeout): - print("process {0} is hanging".format(process)) + print("process {0} is hanging - {1}".format(process, time.strftime("%x %X"))) if current.driver.isInterrupted(): self.stop(current, False, exitstatus) raise @@ -1130,7 +1130,7 @@ class Process(Runnable): process.waitSuccess(exitstatus=exitstatus, timeout=30) break except Expect.TIMEOUT: - print("process {0} is hanging on shutdown".format(process)) + print("process {0} is hanging on shutdown - {1}".format(process, time.strftime("%x %X"))) if current.driver.isInterrupted(): raise finally: |