Home | History | Annotate | Download | only in performance_tests

Lines Matching refs:test_path

89     def __init__(self, port, test_name, test_path, test_runner_count=DEFAULT_TEST_RUNNER_COUNT):
92 self._test_path = test_path
104 def test_path(self):
169 output = self.run_single(driver, self.test_path(), time_out_ms)
206 def run_single(self, driver, test_path, time_out_ms, should_run_pixel_test=False):
207 return driver.run_test(DriverInput(test_path, time_out_ms, image_hash=None, should_run_pixel_test=should_run_pixel_test, args=[]), stop_when_done=False)
268 def __init__(self, port, test_name, test_path, test_runner_count=1):
269 super(SingleProcessPerfTest, self).__init__(port, test_name, test_path, test_runner_count)
275 def __init__(self, port, test_name, test_path, test_runner_count=DEFAULT_TEST_RUNNER_COUNT):
276 super(ChromiumStylePerfTest, self).__init__(port, test_name, test_path, test_runner_count)
281 output = self.run_single(driver, self.test_path(), time_out_ms)