HomeSort by relevance Sort by last modified time
    Searched refs:test_run_results (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_run_results_unittest.py 35 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.TestRunResults(expectations, len(tests)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
manager.py 51 from webkitpy.layout_tests.models import test_run_results namespace
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
    [all...]
manager_unittest.py 39 from webkitpy.layout_tests.models.test_run_results import TestRunResults
layout_test_runner_unittest.py 38 from webkitpy.layout_tests.models.test_run_results import TestRunResults
layout_test_runner.py 36 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/
buildbot_results_unittest.py 37 from webkitpy.layout_tests.models import test_run_results namespace
38 from webkitpy.layout_tests.models import test_run_results namespace
100 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/
run_webkit_tests.py 39 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
83 return test_run_results.INTERRUPTED_EXIT_STATUS
84 except test_run_results.TestRunException as e:
91 return test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
run_webkit_tests_integrationtest.py 53 from webkitpy.layout_tests.models import test_run_results namespace
305 self.assertEqual(details.exit_code, test_run_results.INTERRUPTED_EXIT_STATUS)
313 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
318 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
323 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
480 self.assertEqual(details.exit_code, test_run_results.NO_TESTS_EXIT_STATUS)
590 self.assertEqual(details.exit_code, test_run_results.EARLY_EXIT_STATUS)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
win.py 42 from webkitpy.layout_tests.models import test_run_results namespace
190 result = test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
port_testcase.py 43 from webkitpy.layout_tests.models import test_run_results namespace
115 test_run_results.OK_EXIT_STATUS)
126 test_run_results.UNEXPECTED_ERROR_EXIT_STATUS)
366 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results.OK_EXIT_STATUS)
368 self.assertEqual(port.check_sys_deps(needs_http=False), test_run_results.SYS_DEPS_EXIT_STATUS)
test.py 37 from webkitpy.layout_tests.models import test_run_results namespace
463 return test_run_results.OK_EXIT_STATUS
466 return test_run_results.OK_EXIT_STATUS
android.py 43 from webkitpy.layout_tests.models import test_run_results namespace
479 raise test_run_results.TestRunException(test_run_results.NO_DEVICES_EXIT_STATUS, "Unable to find any attached Android devices.")
515 return test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
571 return test_run_results.NO_DEVICES_EXIT_STATUS
572 return test_run_results.OK_EXIT_STATUS
598 return test_run_results.SYS_DEPS_EXIT_STATUS
599 return test_run_results.OK_EXIT_STATUS
    [all...]
linux.py 34 from webkitpy.layout_tests.models import test_run_results namespace
base.py 59 from webkitpy.layout_tests.models import test_run_results namespace
357 return test_run_results.OK_EXIT_STATUS if result else test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
393 return test_run_results.SYS_DEPS_EXIT_STATUS
394 return test_run_results.OK_EXIT_STATUS
    [all...]
  /external/chromium_org/build/android/pylib/base/
test_dispatcher.py 160 def TagTestRunResults(test_run_results):
168 for test_result in test_run_results.GetAll():

Completed in 275 milliseconds