OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:test_input
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
worker.py
98
for
test_input
in test_list:
99
self._run_test(
test_input
)
112
def _run_test(self,
test_input
):
113
test_timeout_sec = self.timeout(
test_input
)
115
self._worker_connection.post_message('started_test',
test_input
, test_timeout_sec)
117
result = self.run_test_with_timeout(
test_input
, test_timeout_sec)
122
self.clean_up_after_test(
test_input
, result)
worker_mixin.py
77
def timeout(self,
test_input
):
85
driver_timeout_sec = 3.0 * float(
test_input
.timeout) / 1000.0
117
def run_test_with_timeout(self,
test_input
, timeout):
119
return self._run_test_in_another_thread(
test_input
, timeout)
121
return self._run_test_in_this_thread(
test_input
)
124
def clean_up_after_test(self,
test_input
, result):
126
self._tests_run_file.write(
test_input
.filename + "\n")
127
test_name = self._port.relative_test_filename(
test_input
.filename)
148
def _run_test_in_another_thread(self,
test_input
, thread_timeout_sec):
156
test_input
: Object containing the test filename and timeou
[
all
...]
single_test_runner.py
42
def run_single_test(port, options,
test_input
, driver, worker_name):
43
runner = SingleTestRunner(options, port, driver,
test_input
, worker_name)
49
def __init__(self, options, port, driver,
test_input
, worker_name):
53
self._filename =
test_input
.filename
54
self._timeout =
test_input
.timeout
56
self._testname = port.relative_test_filename(
test_input
.filename)
test_runner.py
57
from webkitpy.layout_tests.layout_package.
test_input
import TestInput
503
test_input
= self._get_test_input_for_file(test_file)
505
tests_to_http_lock.append(
test_input
)
507
test_lists.append((".", [
test_input
]))
512
test_input
= self._get_test_input_for_file(test_file)
514
tests_to_http_lock.append(
test_input
)
517
tests_by_dir[directory].append(
test_input
)
[
all
...]
/external/oprofile/libop/tests/
mangle_tests.c
19
struct
test_input
{
struct
24
static struct
test_input
const tests[] = {
50
struct
test_input
const * test;
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py
201
def run_one_test(self,
test_input
):
203
if
test_input
.uri.startswith('http'):
204
test_name = port.uri_to_test_name(
test_input
.uri)
207
test_path =
test_input
.uri
211
if self._options.pixel_tests and
test_input
.checksum:
229
if self._options.pixel_tests and
test_input
.checksum:
232
self._stdout.write('ExpectedHash: %s\n' %
test_input
.checksum)
233
if actual_checksum !=
test_input
.checksum:
259
def run_one_test(self,
test_input
):
261
test_name = self._port.uri_to_test_name(
test_input
.uri
[
all
...]
test.py
430
def run_test(self,
test_input
):
432
test_name = self._port.relative_test_filename(
test_input
.filename)
439
time.sleep((float(
test_input
.timeout) * 4) / 1000.0)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
run_webkit_tests_unittest.py
154
def run_test(self,
test_input
):
158
test_name = self._port.relative_test_filename(
test_input
.filename)
162
if include_reference_html or not is_reference_html_file(
test_input
.filename):
164
return TestDriver.run_test(self,
test_input
)
Completed in 1194 milliseconds