Home | History | Annotate | Download | only in site_utils

Lines Matching full:timestamp

226         """Helper to match and collect timestamp and localtime.
228 Preferred to locate timestamp and localtime with an
237 @return Tuple of timestamp, localtime retrieved from the test status
241 timestamp = ''
246 r'^\s*%s\s+(?:%s).*timestamp=(\d*).*localtime=(%s).*$' % (
250 # There may be multiple lines with timestamp/localtime info.
255 if not timestamp or timestamp_ > timestamp:
256 timestamp = timestamp_
258 return timestamp, localtime
308 timestamp/localtime are saved to be used as sort keys for the results.
351 # Grab the timestamp - can be used for sorting the test runs.
354 # END GOOD testname ... timestamp=1347324321 localtime=Sep 10 17:45:21
356 timestamp, localtime = self._CollectEndTimes(status_raw, status_re)
358 # a default timestamp from the START line in those cases.
359 if not timestamp:
360 timestamp, localtime = self._CollectEndTimes(status_raw,
369 'timestamp': timestamp,
373 'timestamp': timestamp}),
586 tests = sorted(tests, key=operator.itemgetter('timestamp'))