diff options
author | mattip <matti.picus@gmail.com> | 2016-03-09 21:10:29 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2016-03-09 21:10:29 +0200 |
commit | 95f3239659b1497859326d2988a27d2ed1b1291f (patch) | |
tree | 5f9e411f75c785c753fc8e745a8ac611d1b96f20 /testrunner | |
parent | update (diff) | |
download | pypy-95f3239659b1497859326d2988a27d2ed1b1291f.tar.gz pypy-95f3239659b1497859326d2988a27d2ed1b1291f.tar.bz2 pypy-95f3239659b1497859326d2988a27d2ed1b1291f.zip |
hack test runner to log wall time to debug buildbot getting kill signal
Diffstat (limited to 'testrunner')
-rw-r--r-- | testrunner/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testrunner/runner.py b/testrunner/runner.py index 19ba78b976..f2619a548b 100644 --- a/testrunner/runner.py +++ b/testrunner/runner.py @@ -259,7 +259,8 @@ def execute_tests(run_param, testdirs, logfile, out): if res[0] == 'start': started += 1 - out.write("++ starting %s [%d started in total]\n" % (res[1], + now = time.strftime('%H:%M:%S') + out.write("++ %s starting %s [%d started in total]\n" % (now, res[1], started)) continue |