Searched refs:test_input (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
D | layout_test_runner.py | 147 for test_input in self._test_inputs: 148 if test_input.test_name not in run_results.results_by_name: 149 … result = test_results.TestResult(test_input.test_name, [test_failures.FailureEarlyExit()]) 153 … run_results.add(result, expected=False, test_is_slow=self._test_is_slow(test_input.test_name)) 195 def _handle_started_test(self, worker_name, test_input, test_timeout_sec): argument 196 self._printer.print_started_test(test_input.test_name) 242 for i, test_input in enumerate(test_inputs): 243 device_failed = self._run_test(test_input, test_list_name) 251 def _update_test_input(self, test_input): argument 252 if test_input.reference_files is None: [all …]
|
D | single_test_runner.py | 44 def run_single_test(port, options, results_directory, worker_name, driver, test_input, stop_when_do… argument 45 …runner = SingleTestRunner(port, options, results_directory, worker_name, driver, test_input, stop_… 50 return TestResult(test_input.test_name, device_failed=True) 56 …def __init__(self, port, options, results_directory, worker_name, driver, test_input, stop_when_do… argument 62 self._timeout = test_input.timeout 64 self._test_name = test_input.test_name 65 self._should_run_pixel_test = test_input.should_run_pixel_test 66 self._reference_files = test_input.reference_files 67 self._should_add_missing_baselines = test_input.should_add_missing_baselines
|
D | layout_test_runner_unittest.py | 39 from webkitpy.layout_tests.models.test_input import TestInput 190 self.assertEqual([test_input.test_name for test_input in shard.test_inputs],
|
D | manager.py | 52 from webkitpy.layout_tests.models.test_input import TestInput
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | mock_drt.py | 216 def output_for_test(self, test_input, is_reftest): argument 219 …test_input.test_name = test_input.test_name.replace(self._options.virtual_test_suite_base, self._o… 220 actual_text = port.expected_text(test_input.test_name) 221 actual_audio = port.expected_audio(test_input.test_name) 229 if test_input.test_name.endswith('-mismatch.html'): 233 elif test_input.should_run_pixel_test and test_input.image_hash: 234 actual_checksum = port.expected_checksum(test_input.test_name) 235 actual_image = port.expected_image(test_input.test_name) 238 … actual_path = port._filesystem.join(self._options.actual_directory, test_input.test_name) 254 def write_test_output(self, test_input, output, is_reftest): argument [all …]
|
D | base.py | 1629 def should_run_as_pixel_test(self, test_input): argument 1633 …return any(test_input.test_name.startswith(directory) for directory in self._options.pixel_test_di…
|
/external/oprofile/libop/tests/ |
D | mangle_tests.c | 19 struct test_input { struct 24 static struct test_input const tests[] = { argument 50 struct test_input const * test; in main()
|