about summary refs log tree commit diff stats
path: root/test/utils/testset.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/utils/testset.py')
-rw-r--r--test/utils/testset.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/utils/testset.py b/test/utils/testset.py
index 54df732c..e510ff6e 100644
--- a/test/utils/testset.py
+++ b/test/utils/testset.py
@@ -1,9 +1,10 @@
 import os
 import subprocess
 import sys
+import time
 from multiprocessing import cpu_count, Queue, Process
-from test import Test
 
+from test import Test
 
 class Message(object):
     "Message exchanged in the TestSet message queue"
@@ -136,6 +137,7 @@ class TestSet(object):
             test = todo_queue.get()
             if test is None:
                 break
+            test.start_time = time.time()
             message_queue.put(MessageTaskNew(test))
 
             # Go to the expected directory