##// END OF EJS Templates
run-tests: move logging of test start into Test.run()
Gregory Szorc -
r21337:79930515 default
parent child Browse files
Show More
@@ -617,6 +617,8 b' class Test(object):'
617 self._daemonpids.append(env['DAEMON_PIDS'])
617 self._daemonpids.append(env['DAEMON_PIDS'])
618 createhgrc(env['HGRCPATH'], options)
618 createhgrc(env['HGRCPATH'], options)
619
619
620 vlog('# Test', self._test)
621
620 starttime = time.time()
622 starttime = time.time()
621 try:
623 try:
622 ret, out = self._run(testtmp, replacements, env)
624 ret, out = self._run(testtmp, replacements, env)
@@ -1144,8 +1146,6 b' def runone(options, test, count):'
1144 else:
1146 else:
1145 return skip("unknown test type")
1147 return skip("unknown test type")
1146
1148
1147 vlog("# Test", test)
1148
1149 t = runner(test, testpath, options, count, ref, err)
1149 t = runner(test, testpath, options, count, ref, err)
1150 result = t.run()
1150 result = t.run()
1151
1151
General Comments 0
You need to be logged in to leave comments. Login now