OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestExpectations
(Results
1 - 25
of
37
) sorted by null
1
2
/external/chromium_org/content/test/gpu/gpu_tests/
maps_expectations.py
21
class MapsExpectations(test_expectations.
TestExpectations
):
gpu_process_expectations.py
21
class GpuProcessExpectations(expectations.
TestExpectations
):
hardware_accelerated_feature_expectations.py
21
class HardwareAcceleratedFeatureExpectations(expectations.
TestExpectations
):
webgl_conformance_expectations.py
21
class WebGLConformanceExpectations(test_expectations.
TestExpectations
):
/external/chromium_org/media/tools/layout_tests/
test_expectations_unittest.py
8
from test_expectations import
TestExpectations
19
self.assertEquals(
TestExpectations
.ParseLine(line),
28
self.assertEquals(
TestExpectations
.ParseLine(line),
37
self.assertEquals(
TestExpectations
.ParseLine(line),
layouttests_unittest.py
9
from test_expectations import
TestExpectations
17
test_expectations =
TestExpectations
()
test_expectations.py
14
'http://src.chromium.org/blink/trunk/LayoutTests/
TestExpectations
')
27
class
TestExpectations
(object):
30
This class retrieves the
TestExpectations
file via HTTP from WebKit and uses
95
parsed = TestExpectationParser._tokenize_line('
TestExpectations
', line, 0)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
flakytests.py
31
from webkitpy.layout_tests.models.test_expectations import TestExpectationParser, TestExpectationsModel,
TestExpectations
43
print
TestExpectations
.list_to_string(expectations.expectation_lines())
queries.py
39
from webkitpy.layout_tests.models.test_expectations import
TestExpectations
77
help='Print a full
TestExpectations
-style line for every match'),
150
return
TestExpectations
(port, tests).model()
rebaseline.py
44
from webkitpy.layout_tests.models.test_expectations import
TestExpectations
, BASELINE_SUFFIX_LIST, SKIP
155
expectations =
TestExpectations
(port, [test_name])
411
# FIXME: This routine is way too expensive. We're creating N ports and N
TestExpectations
418
expectations =
TestExpectations
(port, include_overrides=False)
426
generic_expectations =
TestExpectations
(port, tests=[test], include_overrides=False)
441
full_expectations =
TestExpectations
(port, tests=[test], include_overrides=True)
477
return set(existing_suffixes) &
TestExpectations
.suffixes_for_actual_expectations_string(actual_results)
496
help_text = "Rebaselines the tests indicated in
TestExpectations
."
508
expectations =
TestExpectations
(port, include_overrides=False, expectations_dict={path: value})
510
suffixes =
TestExpectations
.suffixes_for_expectations(expectations.get_expectations(test)
[
all
...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
buildbot_results.py
36
TestExpectations
= test_expectations.
TestExpectations
82
for result in
TestExpectations
.EXPECTATION_DESCRIPTIONS.keys():
86
desc =
TestExpectations
.EXPECTATION_DESCRIPTIONS[result]
136
descriptions =
TestExpectations
.EXPECTATION_DESCRIPTIONS
138
result =
TestExpectations
.EXPECTATIONS[key.lower()]
146
result =
TestExpectations
.EXPECTATIONS[key.lower()]
154
descriptions =
TestExpectations
.EXPECTATION_DESCRIPTIONS
156
result =
TestExpectations
.EXPECTATIONS[key.lower()]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations_unittest.py
86
self._exp =
TestExpectations
(self._port, self.get_basic_tests(), expectations_dict=expectations_to_lint, is_lint_mode=is_lint_mode)
116
self.assertEqual(
TestExpectations
.result_was_expected(PASS, set([PASS]), test_needs_rebaselining=False), True)
117
self.assertEqual(
TestExpectations
.result_was_expected(FAIL, set([PASS]), test_needs_rebaselining=False), False)
120
self.assertEqual(
TestExpectations
.result_was_expected(SKIP, set([CRASH]), test_needs_rebaselining=False), True)
123
self.assertEqual(
TestExpectations
.result_was_expected(MISSING, set([PASS]), test_needs_rebaselining=True), True)
124
self.assertEqual(
TestExpectations
.result_was_expected(MISSING, set([PASS]), test_needs_rebaselining=False), False)
126
self.assertTrue(
TestExpectations
.result_was_expected(PASS, set([NEEDS_REBASELINE]), test_needs_rebaselining=False))
127
self.assertTrue(
TestExpectations
.result_was_expected(MISSING, set([NEEDS_REBASELINE]), test_needs_rebaselining=False))
128
self.assertTrue(
TestExpectations
.result_was_expected(TEXT, set([NEEDS_REBASELINE]), test_needs_rebaselining=False))
129
self.assertTrue(
TestExpectations
.result_was_expected(IMAGE, set([NEEDS_REBASELINE]), test_needs_rebaselining=False)
[
all
...]
test_run_results.py
87
for expectation in test_expectations.
TestExpectations
.EXPECTATIONS.values():
89
for timeline in test_expectations.
TestExpectations
.TIMELINES.values():
178
for expecation_string, expectation_enum in test_expectations.
TestExpectations
.EXPECTATIONS.iteritems():
test_expectations.py
113
expectation_line = self._create_expectation_line(test_name, expectations, '<Bot
TestExpectations
>')
162
expectation =
TestExpectations
.expectation_from_string(part)
175
# time you update
TestExpectations
without syncing
239
"""Tokenizes a line from
TestExpectations
and returns an unparsed TestExpectationLine instance using the old format.
315
warnings.append('"%s" is not legal in the new
TestExpectations
syntax.' % token)
448
parsed_expectation_to_string = dict([[parsed_expectation, expectation_string] for expectation_string, parsed_expectation in
TestExpectations
.EXPECTATIONS.items()])
475
for index in
TestExpectations
.EXPECTATIONS.values():
536
self._expectation_to_tests = self._dict_of_sets(
TestExpectations
.EXPECTATIONS)
537
self._timeline_to_tests = self._dict_of_sets(
TestExpectations
.TIMELINES)
538
self._result_type_to_tests = self._dict_of_sets(
TestExpectations
.RESULT_TYPES
[
all
...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
layouttestresults.py
35
from webkitpy.layout_tests.models.test_expectations import
TestExpectations
74
tokens = map(
TestExpectations
.expectation_from_string, results_string.split(' '))
/external/chromium_org/tools/telemetry/telemetry/page/
page_runner_unittest.py
50
expectations = test_expectations.
TestExpectations
()
67
expectations = test_expectations.
TestExpectations
()
96
expectations = test_expectations.
TestExpectations
()
115
expectations = test_expectations.
TestExpectations
()
176
expectations = test_expectations.
TestExpectations
()
211
expectations = test_expectations.
TestExpectations
()
238
expectations = test_expectations.
TestExpectations
()
272
expectations = test_expectations.
TestExpectations
()
page_measurement_unittest_base.py
30
expectations=test_expectations.
TestExpectations
(),
profile_generator.py
40
expectations = test_expectations.
TestExpectations
()
test_expectations.py
49
class
TestExpectations
(object):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
bot_test_expectations.py
29
"""Generates a fake
TestExpectations
file consisting of flaky tests from the bot
39
from webkitpy.layout_tests.models.test_expectations import
TestExpectations
164
return
TestExpectations
.EXPECTATIONS_TO_STRING.get(exp, None).upper()
169
result =
TestExpectations
.EXPECTATIONS.get(string.lower(), None)
194
expected = lambda e:
TestExpectations
.result_was_expected(e, expectations, False)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner_unittest.py
44
TestExpectations
= test_expectations.
TestExpectations
106
expectations =
TestExpectations
(runner._port, tests)
116
run_results = TestRunResults(
TestExpectations
(runner._port, test_names), len(test_names))
143
expectations =
TestExpectations
(runner._port, tests=[test])
manager_unittest.py
117
expectations = test_expectations.
TestExpectations
(port, tests)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py
57
from webkitpy.layout_tests.models.test_expectations import
TestExpectations
73
# constructing the
TestExpectations
object, it doesn't matter which Port object we use.
160
test_expectations =
TestExpectations
(self._port, include_overrides=False, model_all_expectations=True)
181
TestExpectations
.list_to_string(test_expectations._expectations, reconstitute_only_these=[]))
lint_test_expectations.py
72
test_expectations.
TestExpectations
(port_to_lint,
/external/chromium_org/tools/telemetry/telemetry/
test.py
84
return test_expectations.
TestExpectations
()
Completed in 717 milliseconds
1
2