Searched defs:TestExpectations (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/media/tools/layout_tests/
H A Dlayouttests_unittest.py9 from test_expectations import TestExpectations namespace
17 test_expectations = TestExpectations()
H A Dtest_expectations_unittest.py8 from test_expectations import TestExpectations namespace
19 self.assertEquals(TestExpectations.ParseLine(line),
28 self.assertEquals(TestExpectations.ParseLine(line),
37 self.assertEquals(TestExpectations.ParseLine(line),
H A Dtest_expectations.py14 'http://src.chromium.org/blink/trunk/LayoutTests/TestExpectations')
27 class TestExpectations(object): class in inherits:object
30 This class retrieves the TestExpectations file via HTTP from WebKit and uses
95 parsed = TestExpectationParser._tokenize_line('TestExpectations', line, 0)
H A Dlayouttest_analyzer.py19 from test_expectations import TestExpectations namespace
172 layouttests_object.JoinWithTestExpectation(TestExpectations()))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dbuildbot_results.py36 TestExpectations = test_expectations.TestExpectations variable
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()]
H A Dprinting.py36 from webkitpy.layout_tests.models.test_expectations import TestExpectations, TestExpectationParser namespace
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dtest_expectations.py49 class TestExpectations(object): class in inherits:object
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A Dflakytests.py33 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser, TestExpectationsModel, TestExpectations namespace
116 # in existing TestExpectations. We could certainly load existing TestExpecations
117 # and filter accordingly, or update existing TestExpectations instead of FlakyTests.
119 flaky_tests_contents = self.FLAKY_TEST_CONTENTS % TestExpectations.list_to_string(lines)
H A Dqueries.py39 from webkitpy.layout_tests.models.test_expectations import TestExpectations namespace
77 help='Print a full TestExpectations-style line for every match'),
150 return TestExpectations(port, tests).model()
H A Drebaseline.py44 from webkitpy.layout_tests.models.test_expectations import TestExpectations, BASELINE_SUFFIX_LIST, SKIP namespace
158 expectations = TestExpectations(port, [test_name])
380 # builder, we still want to remove the line from TestExpectations.
444 # FIXME: This routine is way too expensive. We're creating O(n ports) TestExpectations objects.
450 # tests and we don't want to leave stray [ Android ] lines in TestExpectations..
456 generic_expectations = TestExpectations(port, tests=tests, include_overrides=False)
457 full_expectations = TestExpectations(port, tests=tests, include_overrides=True)
472 expectations = TestExpectations(port, include_overrides=False)
531 return set(existing_suffixes) & TestExpectations.suffixes_for_actual_expectations_string(actual_results)
550 help_text = "Rebaselines the tests indicated in TestExpectations
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
H A Dlayouttestresults.py35 from webkitpy.layout_tests.models.test_expectations import TestExpectations namespace
74 tokens = map(TestExpectations.expectation_from_string, results_string.split(' '))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dbot_test_expectations.py29 """Generates a fake TestExpectations file consisting of flaky tests from the bot
39 from webkitpy.layout_tests.models.test_expectations import TestExpectations namespace
182 return TestExpectations.EXPECTATIONS_TO_STRING.get(exp, None).upper()
187 result = TestExpectations.EXPECTATIONS.get(string.lower(), None)
212 expected = lambda e: TestExpectations.result_was_expected(e, expectations, False)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dlayout_tests_mover.py57 from webkitpy.layout_tests.models.test_expectations import TestExpectations namespace
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=[]))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dlayout_test_runner.py46 TestExpectations = test_expectations.TestExpectations variable
H A Dlayout_test_runner_unittest.py44 TestExpectations = test_expectations.TestExpectations variable
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])
H A Dmanager.py59 TestExpectations = test_expectations.TestExpectations variable
196 self._expectations = test_expectations.TestExpectations(self._port, test_names)
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_mac_unittest.cc282 } TestExpectations; typedef in typeref:struct:__anon4319
284 TestExpectations expected[] = {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_expectations.py113 expectation_line = self._create_expectation_line(test_name, expectations, '<Bot TestExpectations>')
167 expectation = TestExpectations.expectation_from_string(part)
180 # time you update TestExpectations without syncing
245 """Tokenizes a line from TestExpectations and returns an unparsed TestExpectationLine instance using the old format.
321 warnings.append('"%s" is not legal in the new TestExpectations syntax.' % token)
454 parsed_expectation_to_string = dict([[parsed_expectation, expectation_string] for expectation_string, parsed_expectation in TestExpectations.EXPECTATIONS.items()])
481 for index in TestExpectations.EXPECTATIONS.values():
542 self._expectation_to_tests = self._dict_of_sets(TestExpectations.EXPECTATIONS)
543 self._timeline_to_tests = self._dict_of_sets(TestExpectations.TIMELINES)
544 self._result_type_to_tests = self._dict_of_sets(TestExpectations
772 class TestExpectations(object): class in inherits:object
[all...]

Completed in 461 milliseconds