Show More
@@ -962,7 +962,11 b' def runone(options, test, count):' | |||||
962 |
|
962 | |||
963 | if options.time: |
|
963 | if options.time: | |
964 | starttime = time.time() |
|
964 | starttime = time.time() | |
965 | ret, out = runner(testpath, testtmp, options, replacements, env) |
|
965 | try: | |
|
966 | ret, out = runner(testpath, testtmp, options, replacements, env) | |||
|
967 | except KeyboardInterrupt: | |||
|
968 | log('INTERRUPTED:', test) | |||
|
969 | raise | |||
966 | if options.time: |
|
970 | if options.time: | |
967 | endtime = time.time() |
|
971 | endtime = time.time() | |
968 | times.append((test, endtime - starttime)) |
|
972 | times.append((test, endtime - starttime)) |
General Comments 0
You need to be logged in to leave comments.
Login now