Home
last modified time | relevance | path

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

/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/reporter/
DGameQualificationResultReporter.java155 for (TestRunResult testRunResult : getMergedTestRunResults()) { in getInvocationSummary()
156 sb.append(getTestRunSummary(testRunResult)); in getInvocationSummary()
178 for (TestRunResult testRunResult : getMergedTestRunResults()) { in getInvocationSummary()
180 : testRunResult.getTestResults().entrySet()) { in getInvocationSummary()
196 for (TestRunResult testRunResult : getMergedTestRunResults()) { in getInvocationSummary()
197 for (TestDescription test : testRunResult.getFailedTests()) { in getInvocationSummary()
202 TestResult result = testRunResult.getTestResults().get(test); in getInvocationSummary()
241 for (TestRunResult testRunResult : getMergedTestRunResults()) { in createFunctionalTestFailureReport()
242 for (TestDescription test : testRunResult.getFailedTests()) { in createFunctionalTestFailureReport()
247 TestResult result = testRunResult.getTestResults().get(test); in createFunctionalTestFailureReport()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/result/
DConsoleResultReporter.java72 for (TestRunResult testRunResult : getMergedTestRunResults()) { in getInvocationSummary()
73 sb.append(getTestRunSummary(testRunResult)); in getInvocationSummary()
88 String getTestRunSummary(TestRunResult testRunResult) { in getTestRunSummary() argument
90 sb.append(String.format("%s:", testRunResult.getName())); in getTestRunSummary()
91 if (testRunResult.getNumTests() > 0) { in getTestRunSummary()
93 testRunResult.getNumCompleteTests(), in getTestRunSummary()
94 testRunResult.getNumCompleteTests() == 1 ? "" : "s", // Pluralize Test in getTestRunSummary()
95 testRunResult.getNumTestsInState(TestStatus.PASSED), in getTestRunSummary()
96 testRunResult.getNumAllFailedTests(), in getTestRunSummary()
97 testRunResult.getNumTestsInState(TestStatus.IGNORED))); in getTestRunSummary()
[all …]
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DTestRunResultTest.java340 Map<TestDescription, TestResult> testRunResult = result.getTestResults(); in testMergeRetriedRunResults_checkMergingStackTraces() local
341 assertTrue(testRunResult.containsKey(testcase)); in testMergeRetriedRunResults_checkMergingStackTraces()
342 TestResult testResult = testRunResult.get(testcase); in testMergeRetriedRunResults_checkMergingStackTraces()
598 Map<TestDescription, TestResult> testRunResult = result.getTestResults(); in testMergeRetriedRunResults_testCaseStatus() local
599 assertTrue(testRunResult.containsKey(testcase)); in testMergeRetriedRunResults_testCaseStatus()
600 TestResult testResult = testRunResult.get(testcase); in testMergeRetriedRunResults_testCaseStatus()