/tools/tradefederation/core/javatests/com/android/tradefed/result/ |
D | TestRunResultTest.java | 304 TestDescription testcase = new TestDescription("Foo", "foo"); in testMergeRetriedRunResults_checkMergingStackTraces() local 311 result1.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces() 312 result1.testEnded(testcase, new HashMap<String, Metric>()); in testMergeRetriedRunResults_checkMergingStackTraces() 316 result2.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces() 317 result2.testFailed(testcase, "Second run failed."); in testMergeRetriedRunResults_checkMergingStackTraces() 318 result2.testEnded(testcase, new HashMap<String, Metric>()); in testMergeRetriedRunResults_checkMergingStackTraces() 322 result3.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces() 323 result3.testEnded(testcase, new HashMap<String, Metric>()); in testMergeRetriedRunResults_checkMergingStackTraces() 327 result4.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces() 328 result4.testFailed(testcase, "Fourth run failed."); in testMergeRetriedRunResults_checkMergingStackTraces() [all …]
|
/tools/asuite/atest/ |
D | atest_integration_tests.py | 67 def run_test(self, testcase): argument 80 'test': testcase, 110 def create_test_method(testcase, log_path): argument 120 test_function_name = 'test_%s' % testcase.replace(' ', '_') 124 self.test_passed = self.run_test(testcase) 126 failed_message = 'Running command: %s failed.\n' % testcase
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/ |
D | GTestXmlResultParser.java | 174 private void processTestResult(Element testcase) { in processTestResult() argument 175 String classname = testcase.getAttribute("classname"); in processTestResult() 176 String testname = testcase.getAttribute("name"); in processTestResult() 177 String runtime = testcase.getAttribute("time"); in processTestResult() 179 if (testcase.hasAttribute(RESULT_ATTRIBUTE)) { in processTestResult() 180 skipped = SKIPPED_VALUE.equals(testcase.getAttribute(RESULT_ATTRIBUTE)); in processTestResult() 206 if (testcase.getElementsByTagName("failure").getLength() != 0) { in processTestResult() 208 String trace = ((Element)testcase.getElementsByTagName("failure").item(0)) in processTestResult()
|
/tools/security/gdb/gdb_json_printer/test/ |
D | gdb_json_printer_test.py | 52 def json_equal_except_address(testcase, json0, json1): argument 74 testcase.assertEqual(json0, json1) 77 def test_json_variable(testcase, testname, line, variable_name_list): argument 82 json_equal_except_address(testcase, variable_json, expect_variable)
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/bt/pts/ |
D | GATT_PTS_INSTRUCTIONS | 63 Note: Bug BT-764 would simplify this testcase. 86 Note: Bug BT-764 would simplify this testcase. 109 Note: Bug BT-764 would simplify this testcase. 152 Note: Bug BT-764 would simplify this testcase. 189 Note: Bug BT-451 would simplify this testcase.
|
/tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/ |
D | md8475_cellular_simulator.py | 521 testcase = self.anritsu.get_AnritsuTestCases() 525 testcase.procedure = md8475a.TestProcedure(testcase.procedure) 526 testcase.procedure = md8475a.TestProcedure.PROCEDURE_MULTICELL 527 testcase.power_control = md8475a.TestPowerControl.POWER_CONTROL_DISABLE 528 testcase.measurement_LTE = md8475a.TestMeasurement.MEASUREMENT_DISABLE
|
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/ |
D | FakeTestTest.java | 86 for (Map.Entry<String, String> testcase : t.entrySet()) { in testDecodeRle() 87 final String input = testcase.getKey(); in testDecodeRle() 88 final String output = testcase.getValue(); in testDecodeRle() 124 for (Map.Entry<String, String> testcase : t.entrySet()) { in testDecode() 125 final String input = testcase.getKey(); in testDecode() 126 final String output = testcase.getValue(); in testDecode()
|
/tools/test/connectivity/acts_tests/tests/google/bt/pts/instructions/ |
D | SM_PTS_INSTRUCTIONS | 202 Using Example testcase TC_SLA_KDU_BV_02_C. 207 4. Run the example testcase. 214 7. Rerun testcase.
|
D | GAP_PTS_INSTRUCTIONS | 529 Note: Run these commands before executing the testcase on PTS Side 537 Note: Run these commands before executing the testcase on PTS Side 548 Note: Run the first 4 commands before executing the testcase on PTS Side 562 Note: Run the first 4 commands before executing the testcase on PTS Side
|
D | L2CAP_PTS_INSTRUCTIONS | 30 Note: Assumption that devices are paired from previous testcase
|
D | GATT_PTS_INSTRUCTIONS | 32 #Potential new instructions for SIG testcase rewrite 1385 Note: This testcase is tricky as the order randomises a bit each time...
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/ |
D | bt_test_utils.py | 1681 def take_btsnoop_log(ad, testcase, testname): argument 1710 testcase.log.info( 1714 def take_btsnoop_logs(android_devices, testcase, testname): argument 1723 take_btsnoop_log(a, testcase, testname)
|
/tools/repohooks/tools/ |
D | cpplint.py | 1386 testcase = xml.etree.ElementTree.SubElement(testsuite, 'testcase') 1387 testcase.attrib['name'] = 'errors' 1388 error = xml.etree.ElementTree.SubElement(testcase, 'error') 1403 testcase = xml.etree.ElementTree.SubElement(testsuite, 'testcase') 1404 testcase.attrib['name'] = failed_file 1405 failure = xml.etree.ElementTree.SubElement(testcase, 'failure')
|