Home
last modified time | relevance | path

Searched refs:test_name (Results 1 – 2 of 2) sorted by relevance

/development/tools/compare_failed_tests/
Dcompare_failed_tests.py80 def get_result(test_result, module_name, testcase_name, test_name): argument
92 if test_name not in tests:
95 return ', '.join([x + ': ' + y for x, y in tests[test_name].items()])
129 test_name = test.attrib['name']
131 if not test_name in tests:
132 tests[test_name] = collections.OrderedDict()
134 if abi in tests[test_name]:
135 print '[WARNING] duplicated test:', test_name
137 tests[test_name][abi] = test.attrib['result']
170 for test_name, result in tests.iteritems():
[all …]
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeySourceScript.java654 String test_name = args[0]; in handleEvent() local
656 MonkeyInstrumentationEvent e = new MonkeyInstrumentationEvent(test_name, runner_name); in handleEvent()