tests/run-tests.py
changeset 43593 ae91e4e4c9b0
parent 43408 d9e7ac50b80a
child 43594 ac140b85aae9
--- a/tests/run-tests.py	Wed Oct 30 00:00:21 2019 -0700
+++ b/tests/run-tests.py	Wed Oct 16 21:25:08 2019 -0700
@@ -2247,17 +2247,17 @@
         # child's processes along with real elapsed time taken by a process.
         # This module has one limitation. It can only work for Linux user
         # and not for Windows.
-        test.started = os.times()
+        test.started_times = os.times()
         if self._firststarttime is None:  # thread racy but irrelevant
-            self._firststarttime = test.started[4]
+            self._firststarttime = test.started_times[4]
 
     def stopTest(self, test, interrupted=False):
         super(TestResult, self).stopTest(test)
 
-        test.stopped = os.times()
-
-        starttime = test.started
-        endtime = test.stopped
+        test.stopped_times = os.times()
+
+        starttime = test.started_times
+        endtime = test.stopped_times
         origin = self._firststarttime
         self.times.append(
             (