HomeSort by relevance Sort by last modified time
    Searched refs:TestExpectations (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/content/test/gpu/gpu_tests/
webgl_conformance_expectations.py 13 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)
layouttest_analyzer.py 19 from test_expectations import TestExpectations
172 layouttests_object.JoinWithTestExpectation(TestExpectations()))
  /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
42 print TestExpectations.list_to_string(expectations.expectation_lines())
queries.py 39 from webkitpy.layout_tests.models.test_expectations import TestExpectations
75 help='Print a full TestExpectations-style line for every match'),
148 return TestExpectations(port, tests).model()
rebaseline.py 42 from webkitpy.layout_tests.models.test_expectations import TestExpectations, BASELINE_SUFFIX_LIST
406 expectations = TestExpectations(port, include_overrides=False)
442 return set(existing_suffixes) & TestExpectations.suffixes_for_actual_expectations_string(actual_results)
461 help_text = "Rebaselines the tests indicated in TestExpectations."
472 expectations = TestExpectations(port, include_overrides=False, expectations_dict={path: value})
474 suffixes = TestExpectations.suffixes_for_expectations(expectations.get_expectations(test))
556 help_text = "Rebaselines any NeedsRebaseline lines in TestExpectations that have cycled through all the bots."
642 expectations = TestExpectations(port, include_overrides=True)
706 # to rebaseline, but we'll still need to update TestExpectations.
    [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 59 for expectation in test_expectations.TestExpectations.EXPECTATIONS.values():
61 for timeline in test_expectations.TestExpectations.TIMELINES.values():
149 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/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)
manager.py 59 TestExpectations = test_expectations.TestExpectations
190 self._expectations = test_expectations.TestExpectations(self._port, test_names)
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner_unittest.py 50 expectations = test_expectations.TestExpectations()
66 expectations = test_expectations.TestExpectations()
129 expectations = test_expectations.TestExpectations()
166 expectations = test_expectations.TestExpectations()
195 expectations = test_expectations.TestExpectations()
231 expectations = test_expectations.TestExpectations()
page_measurement_unittest_base.py 30 expectations=test_expectations.TestExpectations(),
test_expectations.py 39 class TestExpectations(object):
test_expectations_unittest.py 21 class SampleTestExpectations(test_expectations.TestExpectations):
record_wpr.py 93 expectations = test_expectations.TestExpectations()
  /external/chromium_org/tools/telemetry/telemetry/
test.py 74 return test_expectations.TestExpectations()
  /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,

Completed in 207 milliseconds

1 2