HomeSort by relevance Sort by last modified time
    Searched refs:start_date_ms (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/build/android/pylib/host_driven/
test_runner.py 22 def __init__(self, test_name, start_date_ms, exc_info):
27 start_date_ms: the starting time for the test.
34 duration_ms = (int(time.time()) * 1000) - start_date_ms
39 start_date_ms,
86 start_date_ms = int(time.time()) * 1000
101 test.tagged_name, start_date_ms, exc_info))
115 test.tagged_name, start_date_ms, exc_info))
130 test.tagged_name, start_date_ms, exc_info))
  /external/chromium_org/build/android/pylib/instrumentation/
test_runner.py 302 start_date_ms = None
309 start_date_ms = int(time.time()) * 1000
311 duration_ms = int(time.time()) * 1000 - start_date_ms
321 test, base_test_result.ResultType.FAIL, start_date_ms, duration_ms,
325 test, base_test_result.ResultType.PASS, start_date_ms, duration_ms)
332 if start_date_ms:
333 duration_ms = int(time.time()) * 1000 - start_date_ms
335 start_date_ms = int(time.time()) * 1000
341 test, base_test_result.ResultType.CRASH, start_date_ms, duration_ms,

Completed in 36 milliseconds