Home
last modified time | relevance | path

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

/tools/tradefederation/core/invocation_interfaces/com/android/tradefed/result/
DTestRunResult.java461 public static TestRunResult merge(List<TestRunResult> testRunResults) { in merge() argument
462 return merge(testRunResults, MergeStrategy.ONE_TESTCASE_PASS_IS_PASS); in merge()
475 public static TestRunResult merge(List<TestRunResult> testRunResults, MergeStrategy strategy) { in merge() argument
476 if (testRunResults.isEmpty()) { in merge()
483 if (testRunResults.size() == 1) { in merge()
485 return testRunResults.get(0); in merge()
489 String testRunName = testRunResults.get(0).getName(); in merge()
506 for (TestRunResult eachRunResult : testRunResults) { in merge()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandScheduler.java184 final Collection<TestRunResult> testRunResults = this.getMergedTestRunResults(); in updateInvocationStatus() local
185 for (final TestRunResult result : testRunResults) { in updateInvocationStatus()