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 | 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 | 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