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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
browser_test.py 29 from webkitpy.layout_tests.models import test_run_results namespace
62 return test_run_results.OK_EXIT_STATUS
browser_test_unittest.py 35 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)
win.py 42 from webkitpy.layout_tests.models import test_run_results namespace
184 result = test_run_results.UNEXPECTED_ERROR_EXIT_STATUS
port_testcase.py 45 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)
test.py 37 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
android.py 43 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
    [all...]
linux.py 34 from webkitpy.layout_tests.models import test_run_results namespace
base.py 60 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
    [all...]
  /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/views/
buildbot_results_unittest.py 36 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/
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
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
run_webkit_tests_unittest.py 53 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)
    [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
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.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/build/android/pylib/base/
test_dispatcher.py 160 def TagTestRunResults(test_run_results):
168 for test_result in test_run_results.GetAll():

Completed in 1242 milliseconds