HomeSort by relevance Sort by last modified time
    Searched refs:TestExpectations (Results 1 - 25 of 39) 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):
screenshot_sync_expectations.py 21 class ScreenshotSyncExpectations(expectations.TestExpectations):
memory_expectations.py 21 class MemoryExpectations(test_expectations.TestExpectations):
pixel_expectations.py 21 class PixelExpectations(test_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/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 88 self._exp = TestExpectations(self._port, self.get_basic_tests(), expectations_dict=expectations_to_lint, is_lint_mode=is_lint_mode)
118 self.assertEqual(TestExpectations.result_was_expected(PASS, set([PASS]), test_needs_rebaselining=False), True)
119 self.assertEqual(TestExpectations.result_was_expected(FAIL, set([PASS]), test_needs_rebaselining=False), False)
122 self.assertEqual(TestExpectations.result_was_expected(SKIP, set([CRASH]), test_needs_rebaselining=False), True)
123 self.assertEqual(TestExpectations.result_was_expected(SKIP, set([LEAK]), test_needs_rebaselining=False), True)
126 self.assertEqual(TestExpectations.result_was_expected(MISSING, set([PASS]), test_needs_rebaselining=True), True)
127 self.assertEqual(TestExpectations.result_was_expected(MISSING, set([PASS]), test_needs_rebaselining=False), False)
129 self.assertTrue(TestExpectations.result_was_expected(PASS, set([NEEDS_REBASELINE]), test_needs_rebaselining=False))
130 self.assertTrue(TestExpectations.result_was_expected(MISSING, set([NEEDS_REBASELINE]), test_needs_rebaselining=False))
131 self.assertTrue(TestExpectations.result_was_expected(TEXT, set([NEEDS_REBASELINE]), test_needs_rebaselining=False)
    [all...]