Lines Matching full:actual
113 def CompareResults(manifest, actual):
115 - List of results present in MANIFEST but missing from ACTUAL.
116 - List of results present in ACTUAL but missing from MANIFEST.
118 # Report all the actual results not present in the manifest.
119 actual_vs_manifest = actual - manifest
126 manifest_vs_actual = manifest_without_flaky_tests - actual
143 logging.info('Getting actual results from build directory: "%s"',
148 actual = set()
153 actual.update(failures)
159 if actual:
160 logging.debug('Actual test failures:')
161 LogResults('debug', actual)
163 actual_vs_manifest, manifest_vs_actual = CompareResults(manifest, actual)