##// END OF EJS Templates
run-tests: report interrupted tests...
Simon Heimberg -
r19300:d7d40600 default
parent child Browse files
Show More
@@ -962,7 +962,11 b' def runone(options, test, count):'
962 962
963 963 if options.time:
964 964 starttime = time.time()
965 try:
965 966 ret, out = runner(testpath, testtmp, options, replacements, env)
967 except KeyboardInterrupt:
968 log('INTERRUPTED:', test)
969 raise
966 970 if options.time:
967 971 endtime = time.time()
968 972 times.append((test, endtime - starttime))
General Comments 0
You need to be logged in to leave comments. Login now