Lines Matching refs:batchResults
1475 TestResults batchResults; in finishProcess() local
1477 if (!GetTestResultsFromFile(processInfo->resultsFileName.c_str(), &batchResults)) in finishProcess()
1484 batchResults.results[id] = {TestResultType::NoResult}; in finishProcess()
1503 ParseTestIdentifierAndSetResult(testName, TestResultType::Crash, &batchResults); in finishProcess()
1508 ParseTestIdentifierAndSetResult(testName, TestResultType::Fail, &batchResults); in finishProcess()
1513 ParseTestIdentifierAndSetResult(testName, TestResultType::Pass, &batchResults); in finishProcess()
1518 ParseTestIdentifierAndSetResult(testName, TestResultType::Skip, &batchResults); in finishProcess()
1523 if (!MergeTestResults(&batchResults, &mTestResults, mFlakyRetries)) in finishProcess()
1529 if (!batchResults.results.empty()) in finishProcess()
1531 const TestIdentifier &id = batchResults.results.begin()->first; in finishProcess()
1535 for (const auto &resultIter : batchResults.results) in finishProcess()
1548 for (const auto &resultIter : batchResults.results) in finishProcess()
1594 for (const auto &resultIter : batchResults.results) in finishProcess()