/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | json_layout_results_generator.py | 32 from webkitpy.layout_tests.layout_package import test_expectations 45 …FAILURE_TO_CHAR = {test_expectations.PASS: json_results_generator.JSONResultsGeneratorBase.PASS_RE… 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 …]
|
D | test_failures.py | 32 import test_expectations 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.AUDIO
|
D | result_summary.py | 35 import test_expectations 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:
|
D | test_runner.py | 52 from webkitpy.layout_tests.layout_package import test_expectations 67 TestExpectationsFile = test_expectations.TestExpectationsFile 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: 277 test_expectations.TestExpectations( [all …]
|
D | printing_unittest.py | 42 from webkitpy.layout_tests.layout_package import test_expectations 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 …]
|
D | printing.py | 36 from webkitpy.layout_tests.layout_package import test_expectations 40 TestExpectationsFile = test_expectations.TestExpectationsFile
|
D | json_results_generator_unittest.py | 37 from webkitpy.layout_tests.layout_package import test_expectations
|
D | test_expectations_unittest.py | 36 from webkitpy.layout_tests.layout_package.test_expectations import *
|
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
D | test_expectations.py | 38 from webkitpy.style_references import test_expectations 91 expectations = test_expectations.TestExpectationsFile( 95 except test_expectations.ParseError, error:
|
D | test_expectations_unittest.py | 43 from test_expectations import TestExpectationsChecker 45 from webkitpy.style_references import test_expectations as test_expectations_style
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | chromium.py | 43 from webkitpy.layout_tests.layout_package import test_expectations 247 def test_expectations(self): member in ChromiumPort 266 expectations_str = self.test_expectations() 274 expectations = test_expectations.TestExpectations( 279 for test in expectations.get_tests_with_result_type(test_expectations.SKIP)]
|
D | webkit_unittest.py | 106 self.assertEqual(port.test_expectations(),
|
D | chromium_unittest.py | 178 port.test_expectations = lambda: """BUG_TEST SKIP : fast/js/not-good.js = TEXT
|
D | base_unittest.py | 278 self.assertVirtual(port.test_expectations)
|
D | webkit.py | 300 def test_expectations(self): member in WebKitPort
|
D | base.py | 680 def test_expectations(self): member in Port
|
/external/webkit/Tools/Scripts/webkitpy/ |
D | style_references.py | 49 from webkitpy.layout_tests.layout_package import test_expectations
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
D | rebaseline_chromium_webkit_tests.py | 61 from webkitpy.layout_tests.layout_package import test_expectations 178 expectations_str = self._rebaseline_port.test_expectations() 179 self._test_expectations = test_expectations.TestExpectations(
|
D | run_webkit_tests_unittest.py | 275 port_obj.test_expectations = lambda: "# syntax error"
|
/external/webkit/Tools/Scripts/webkitpy/style/ |
D | checker.py | 42 from checkers.test_expectations import TestExpectationsChecker
|
/external/webkit/Tools/ |
D | ChangeLog-2011-02-16 | 1943 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 1983 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 2103 The current modifier parsing code in test_expectations is 2122 single test_expectations.txt file. 2129 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 2141 * Tools/Scripts/webkitpy/style/checkers/test_expectations.py: 2763 classes, test_expectations.py. This change adds "test-win" and 2771 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 3190 nrwt: remove fs refs from printing, test_failures, test_expectations, text_diff 3196 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: [all …]
|
D | ChangeLog | 1535 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 1701 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 2773 in the test_expectations code and the port-specific code. 2777 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 2805 Also, it will no longer modify the test_expectations.txt file 2813 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 6062 Enable media tests in chromium-gpu/test_expectations
|
D | ChangeLog-2010-05-24 | 576 * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt: Added. 5201 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 6886 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 7283 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 7704 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 8937 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 9752 test_expectations.txt file in addition to the Skipped files, so we 11350 Re-enable the downstream test_expectations overrides file that was 11484 * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: 11764 can store test_expectations both upstream and downstream for a port [all …]
|