HomeSort by relevance Sort by last modified time
    Searched refs:test_expectations (Results 1 - 20 of 20) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
result_summary.py 35 import test_expectations namespace
39 TestExpectationsFile = test_expectations.TestExpectationsFile
61 self.tests_by_expectation[test_expectations.SKIP] = set()
88 if result.type == test_expectations.CRASH or result.type == test_expectations.TIMEOUT:
json_layout_results_generator.py 32 from webkitpy.layout_tests.layout_package import test_expectations namespace
45 FAILURE_TO_CHAR = {test_expectations.PASS: json_results_generator.JSONResultsGeneratorBase.PASS_RESULT,
46 test_expectations.SKIP: json_results_generator.JSONResultsGeneratorBase.SKIP_RESULT,
47 test_expectations.FAIL: "Y",
48 test_expectations.CRASH: "C",
49 test_expectations.TIMEOUT: "T",
50 test_expectations.IMAGE: "I",
51 test_expectations.TEXT: "F",
52 test_expectations.MISSING: "O",
53 test_expectations.AUDIO: "A"
    [all...]
test_failures.py 32 import test_expectations namespace
45 one of the test_expectations result types - PASS, TEXT, CRASH, etc."""
48 return test_expectations.PASS
52 return test_expectations.CRASH
54 return test_expectations.TIMEOUT
59 return test_expectations.MISSING
68 return test_expectations.IMAGE_PLUS_TEXT
70 return test_expectations.TEXT
72 return test_expectations.IMAGE
74 return test_expectations.AUDI
    [all...]
test_runner.py 52 from webkitpy.layout_tests.layout_package import test_expectations namespace
67 TestExpectationsFile = test_expectations.TestExpectationsFile
77 expectations: test_expectations.TestExpectations object
100 results['fixable'] = len(tbt[test_expectations.NOW] -
101 tbe[test_expectations.PASS])
102 results['skipped'] = len(tbt[test_expectations.NOW] &
103 tbe[test_expectations.SKIP])
127 if result_type == test_expectations.PASS:
129 elif result_type == test_expectations.CRASH:
264 except test_expectations.ParseError
    [all...]
printing_unittest.py 42 from webkitpy.layout_tests.layout_package import test_expectations namespace
133 def get_result(self, test, result_type=test_expectations.PASS, run_time=0):
135 if result_type == test_expectations.TIMEOUT:
137 elif result_type == test_expectations.CRASH:
145 expectations = test_expectations.TestExpectations(
391 rs.add(self.get_result('passes/text.html', test_expectations.TIMEOUT), False)
393 rs.add(self.get_result('failures/expected/crash.html', test_expectations.CRASH), True)
420 rs.add(self.get_result('passes/text.html', test_expectations.TIMEOUT), False)
422 rs.add(self.get_result('failures/expected/crash.html', test_expectations.CRASH), True)
491 rs.add(self.get_result('passes/text.html', test_expectations.PASS)
    [all...]
printing.py 36 from webkitpy.layout_tests.layout_package import test_expectations namespace
40 TestExpectationsFile = test_expectations.TestExpectationsFile
json_results_generator_unittest.py 37 from webkitpy.layout_tests.layout_package import test_expectations namespace
test_expectations_unittest.py 30 """Unit tests for test_expectations.py."""
36 from webkitpy.layout_tests.layout_package.test_expectations import *
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 29 """Checks WebKit style for test_expectations files."""
38 from webkitpy.style_references import test_expectations namespace
40 _log = logging.getLogger("webkitpy.style.checkers.test_expectations")
54 """Processes test_expectations.txt lines for validating the syntax."""
78 # Suppress error messages of test_expectations module since they will be
81 "test_expectations")
91 expectations = test_expectations.TestExpectationsFile(
95 except test_expectations.ParseError, error:
test_expectations_unittest.py 30 """Unit tests for test_expectations.py."""
43 from test_expectations import TestExpectationsChecker
45 from webkitpy.style_references import test_expectations as test_expectations_style
65 """TestCase for test_expectations.py"""
77 checker = TestExpectationsChecker('test/test_expectations.txt',
  /external/webkit/Tools/Scripts/webkitpy/
style_references.py 49 from webkitpy.layout_tests.layout_package import test_expectations namespace
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
webkit_unittest.py 100 '/tmp/test_expectations.txt': 'BUG_TESTEXPECTATIONS SKIP : fast/html/article-element.html = FAIL\n',
104 port = TestWebKitPort(expectations_file='/tmp/test_expectations.txt',
106 self.assertEqual(port.test_expectations(),
chromium.py 43 from webkitpy.layout_tests.layout_package import test_expectations namespace
201 'chromium', 'test_expectations.txt')
247 def test_expectations(self): member in class:ChromiumPort
251 test_expectations file. See test_expectations.py for more details."""
258 'layout_tests', 'test_expectations.txt')
266 expectations_str = self.test_expectations()
274 expectations = test_expectations.TestExpectations(
279 for test in expectations.get_tests_with_result_type(test_expectations.SKIP)]
chromium_unittest.py 178 port.test_expectations = lambda: """BUG_TEST SKIP : fast/js/not-good.js = TEXT
base_unittest.py 278 self.assertVirtual(port.test_expectations)
webkit.py 70 'test_expectations.txt')
300 def test_expectations(self): member in class:WebKitPort
301 # The WebKit mac port uses a combination of a test_expectations file
313 # format expected by test_expectations.
base.py 432 # Used by test_expectations.py to apply rules to whole directories.
437 # Used by test_expectations.py to determine if an entry refers to a
680 def test_expectations(self): member in class:Port
684 test_expectations file. See test_expectations.py for more details."""
688 """Returns an optional set of overrides for the test_expectations.
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests.py 61 from webkitpy.layout_tests.layout_package import test_expectations namespace
156 configuration information like the test_expectations.txt
176 # -. update the tests in test_expectations file after rebaseline
178 expectations_str = self._rebaseline_port.test_expectations()
179 self._test_expectations = test_expectations.TestExpectations(
    [all...]
run_webkit_tests_unittest.py 275 port_obj.test_expectations = lambda: "# syntax error"
  /external/webkit/Tools/Scripts/webkitpy/style/
checker.py 42 from checkers.test_expectations import TestExpectationsChecker
453 # Files like 'test_expectations.txt' and 'drt_expectations.txt'
461 elif basename == 'test_expectations.txt' or basename == 'drt_expectations.txt':
515 if basename == 'test_expectations.txt' or basename == 'drt_expectations.txt':

Completed in 223 milliseconds