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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_finder.py 99 tests_to_skip = expectations.get_tests_with_result_type(test_expectations.SKIP)
101 tests_to_skip.update(expectations.get_tests_with_result_type(test_expectations.FAIL))
102 tests_to_skip.update(expectations.get_tests_with_result_type(test_expectations.FLAKY))
105 tests_to_skip = all_tests - tests_to_skip
107 tests_to_skip = set()
110 tests_to_skip -= set(paths)
112 return tests_to_skip
manager.py 108 tests_to_skip = self._finder.skip_tests(paths, test_names, self._expectations, self._http_tests(test_names))
109 tests_to_run = [test for test in test_names if test not in tests_to_skip]
112 return tests_to_run, tests_to_skip
127 tests_to_skip.update(tests_in_other_chunks)
129 return tests_to_run, tests_to_skip
198 tests_to_run, tests_to_skip = self._prepare_lists(paths, test_names)
220 initial_results = self._run_tests(tests_to_run, tests_to_skip, self._options.repeat_each, self._options.iterations,
233 retry_results = self._run_tests(tests_to_retry, tests_to_skip=set(), repeat_each=1, iterations=1,
277 def _run_tests(self, tests_to_run, tests_to_skip, repeat_each, iterations, num_workers, retrying):
284 return self._runner.run_tests(self._expectations, test_inputs, tests_to_skip, num_workers, retrying
    [all...]
layout_test_runner.py 79 def run_tests(self, expectations, test_inputs, tests_to_skip, num_workers, retrying):
86 run_results = TestRunResults(self._expectations, len(test_inputs) + len(tests_to_skip))
94 for test_name in set(tests_to_skip):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base.py     [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations.py     [all...]

Completed in 141 milliseconds