Searched refs:test_run_results (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_run_results_unittest.py35 from webkitpy.layout_tests.models import test_run_results namespace
57 return test_run_results.TestRunResults(expectations, len(tests))
99 return test_run_results.summarize_results(port, initial_results.expectations, initial_results, retry_results, enabled_pixel_tests_in_retry=False, only_include_failing=only_include_failing)
108 test_dict = test_run_results._interpret_test_failures([test_failures.FailureReftestMismatchDidNotOccur(self.port.abspath_for_test('foo/reftest-expected-mismatch.html'))])
111 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingAudio()])
114 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingResult()])
117 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingImage()])
120 test_dict = test_run_results._interpret_test_failures([test_failures.FailureMissingImageHash()])
200 initial_results = test_run_results.TestRunResults(expectations, len(tests))
202 retry_results = test_run_results
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dbrowser_test.py29 from webkitpy.layout_tests.models import test_run_results namespace
62 return test_run_results.OK_EXIT_STATUS
H A Dbrowser_test_unittest.py35 from webkitpy.layout_tests.models import test_run_results namespace
46 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results.OK_EXIT_STATUS)
H A Dwin.py42 from webkitpy.layout_tests.models import test_run_results namespace
184 result = test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
H A Dport_testcase.py45 from webkitpy.layout_tests.models import test_run_results namespace
118 test_run_results.OK_EXIT_STATUS)
129 test_run_results.UNEXPECTED_ERROR_EXIT_STATUS)
360 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results.OK_EXIT_STATUS)
362 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results.SYS_DEPS_EXIT_STATUS)
H A Dlinux.py34 from webkitpy.layout_tests.models import test_run_results namespace
H A Dandroid.py43 from webkitpy.layout_tests.models import test_run_results namespace
481 raise test_run_results.TestRunException(test_run_results.NO_DEVICES_EXIT_STATUS, "Unable to find any attached Android devices.")
517 return test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
573 return test_run_results.NO_DEVICES_EXIT_STATUS
574 return test_run_results.OK_EXIT_STATUS
600 return test_run_results.SYS_DEPS_EXIT_STATUS
601 return test_run_results.OK_EXIT_STATUS
H A Dtest.py37 from webkitpy.layout_tests.models import test_run_results namespace
438 return test_run_results.OK_EXIT_STATUS
441 return test_run_results.OK_EXIT_STATUS
H A Dbase.py60 from webkitpy.layout_tests.models import test_run_results namespace
358 return test_run_results.OK_EXIT_STATUS if result else test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
394 return test_run_results.SYS_DEPS_EXIT_STATUS
395 return test_run_results.OK_EXIT_STATUS
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dmanager.py51 from webkitpy.layout_tests.models import test_run_results namespace
219 return test_run_results.OK_EXIT_STATUS
229 return test_run_results.RunDetails(exit_code=test_run_results.NO_TESTS_EXIT_STATUS)
240 return test_run_results.RunDetails(exit_code=test_run_results.NO_TESTS_EXIT_STATUS)
244 return test_run_results.RunDetails(exit_code=exit_code)
288 summarized_full_results = test_run_results.summarize_results(self._port, self._expectations, initial_results, retry_results, enabled_pixel_tests_in_retry)
289 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)
292 if exit_code > test_run_results
[all...]
H A Dmanager_unittest.py39 from webkitpy.layout_tests.models.test_run_results import TestRunResults
H A Dlayout_test_runner_unittest.py38 from webkitpy.layout_tests.models.test_run_results import TestRunResults
H A Dlayout_test_runner.py36 from webkitpy.layout_tests.models.test_run_results import TestRunResults
85 # FIXME: rename all variables to test_run_results or some such ...
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dbuildbot_results_unittest.py36 from webkitpy.layout_tests.models import test_run_results namespace
37 from webkitpy.layout_tests.models import test_run_results namespace
99 details = test_run_results.RunDetails(failing_summary['num_regressions'], full_summary, failing_summary, initial_results, None)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Drun_webkit_tests.py39 from webkitpy.layout_tests.models import test_run_results namespace
70 return test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
74 if ((run_details.exit_code not in test_run_results.ERROR_CODES or
75 run_details.exit_code == test_run_results.EARLY_EXIT_STATUS) and
86 return test_run_results.INTERRUPTED_EXIT_STATUS
87 except test_run_results.TestRunException as e:
94 return test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
H A Drun_webkit_tests_unittest.py53 from webkitpy.layout_tests.models import test_run_results namespace
304 self.assertEqual(details.exit_code, test_run_results.INTERRUPTED_EXIT_STATUS)
312 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
317 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
322 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
479 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
589 self.assertEqual(details.exit_code, test_run_results.EARLY_EXIT_STATUS)
828 self.assertEqual(res, test_run_results.UNEXPECTED_ERROR_EXIT_STATUS)
840 self.assertEqual(run_webkit_tests.main(['--platform', port_name, 'fast/harness/results.html'], out, err), test_run_results.UNEXPECTED_ERROR_EXIT_STATUS)
1025 exit_code = test_run_results
[all...]
/external/chromium_org/build/android/pylib/base/
H A Dtest_dispatcher.py160 def TagTestRunResults(test_run_results):
168 for test_result in test_run_results.GetAll():

Completed in 1033 milliseconds