Home
last modified time | relevance | path

Searched refs:test_result (Results 1 – 3 of 3) sorted by relevance

/development/tools/compare_failed_tests/
Dcompare_failed_tests.py80 def get_result(test_result, module_name, testcase_name, test_name): argument
83 modules = test_result['modules']
104 test_result = collections.OrderedDict()
105 test_result['info'] = get_test_info(root)
108 test_result['modules'] = modules
139 return test_result
/development/testrunner/test_defs/
Dinstrumentation_test.py201 for test_result in test_results:
202 if test_result.GetStatusCode() == -1: # error
203 logger.Log("Error in %s: %s" % (test_result.GetTestName(),
204 test_result.GetFailureReason()))
206 elif test_result.GetStatusCode() == -2: # failure
207 logger.Log("Failure in %s: %s" % (test_result.GetTestName(),
208 test_result.GetFailureReason()))
/development/testrunner/
Dam_instrument_parser.py52 test_result = TestResult(result_block_string)
53 if test_result.GetStatusCode() == 1: # The test started
55 elif test_result.GetStatusCode() in [0, -1, -2]:
56 test_results.append(test_result)