Home | History | Annotate | Download | only in controllers

Lines Matching refs:test_run_results

51 from webkitpy.layout_tests.models import test_run_results
183 return test_run_results.OK_EXIT_STATUS
193 return test_run_results.RunDetails(exit_code=test_run_results.NO_TESTS_EXIT_STATUS)
204 return test_run_results.RunDetails(exit_code=test_run_results.NO_TESTS_EXIT_STATUS)
208 return test_run_results.RunDetails(exit_code=exit_code)
252 summarized_full_results = test_run_results.summarize_results(self._port, self._expectations, initial_results, retry_results, enabled_pixel_tests_in_retry)
253 summarized_failing_results = test_run_results.summarize_results(self._port, self._expectations, initial_results, retry_results, enabled_pixel_tests_in_retry, only_include_failing=True)
256 if exit_code > test_run_results.MAX_FAILURES_EXIT_STATUS:
258 (exit_code, test_run_results.MAX_FAILURES_EXIT_STATUS))
259 exit_code = test_run_results.MAX_FAILURES_EXIT_STATUS
268 exit_code = test_run_results.INTERRUPTED_EXIT_STATUS
271 exit_code = test_run_results.EARLY_EXIT_STATUS
275 return test_run_results.RunDetails(exit_code, summarized_full_results, summarized_failing_results, initial_results, retry_results, enabled_pixel_tests_in_retry)