# HG changeset patch # User Gregory Szorc # Date 2014-04-20 04:50:23 # Node ID 79930515604f380b0dc5a832c3cdcd2f297e2afb # Parent 45ab0668d1b2bd53f7214cba3e106627136a7e14 run-tests: move logging of test start into Test.run() diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -617,6 +617,8 @@ class Test(object): self._daemonpids.append(env['DAEMON_PIDS']) createhgrc(env['HGRCPATH'], options) + vlog('# Test', self._test) + starttime = time.time() try: ret, out = self._run(testtmp, replacements, env) @@ -1144,8 +1146,6 @@ def runone(options, test, count): else: return skip("unknown test type") - vlog("# Test", test) - t = runner(test, testpath, options, count, ref, err) result = t.run()