summaryrefslogtreecommitdiffstats
path: root/runtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'runtest.py')
-rwxr-xr-xruntest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtest.py b/runtest.py
index eecf19d..ccc170a 100755
--- a/runtest.py
+++ b/runtest.py
@@ -798,6 +798,8 @@ def run_test(t, io_lock, run_async=True):
global tests_completed, tests_passing, tests_failing
header = ""
command_args = []
+ if sys.version_info[0] < 3:
+ command_args.append('-tt')
if debug:
command_args.append(debug)
command_args.append(t.path)