HomeSort by relevance Sort by last modified time
    Searched refs:test_expectations (Results 26 - 50 of 57) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing.py 35 from webkitpy.layout_tests.models import test_expectations namespace
36 from webkitpy.layout_tests.models.test_expectations import TestExpectations, TestExpectationParser
111 self._print_expected_results_of_type(run_results, test_expectations.PASS, "passes", tests_with_result_type_callback)
112 self._print_expected_results_of_type(run_results, test_expectations.FAIL, "failures", tests_with_result_type_callback)
113 self._print_expected_results_of_type(run_results, test_expectations.FLAKY, "flaky", tests_with_result_type_callback)
128 now = run_results.tests_by_timeline[test_expectations.NOW]
129 wontfix = run_results.tests_by_timeline[test_expectations.WONTFIX]
193 if (result == test_expectations.TIMEOUT or
194 result == test_expectations.CRASH):
377 if result_type == test_expectations.PASS
    [all...]
printing_unittest.py 42 from webkitpy.layout_tests.models import test_expectations namespace
109 def get_result(self, test_name, result_type=test_expectations.PASS, run_time=0):
111 if result_type == test_expectations.TIMEOUT:
113 elif result_type == test_expectations.CRASH:
buildbot_results_unittest.py 34 from webkitpy.layout_tests.models import test_expectations namespace
  /external/chromium_org/content/test/gpu/gpu_tests/
webgl_conformance_expectations.py 5 from telemetry.page import test_expectations namespace
21 class WebGLConformanceExpectations(test_expectations.TestExpectations):
  /external/chromium_org/media/tools/layout_tests/
layouttests.py 220 def JoinWithTestExpectation(self, test_expectations):
224 test_expectations: a test expectations object.
238 test_expectations.all_test_expectation_info.items()):
layouttest_analyzer.py 19 from test_expectations import TestExpectations
  /external/chromium_org/third_party/skia/tools/
jsondiff.py 90 test_expectations = all_expectations[test_name]
91 allowed_digests = test_expectations[
  /external/chromium_org/tools/telemetry/telemetry/page/
profile_generator.py 21 from telemetry.page import test_expectations namespace
71 expectations = test_expectations.TestExpectations()
page_test.py 6 from telemetry.page import test_expectations namespace
242 return test_expectations.TestExpectations()
record_wpr.py 17 from telemetry.page import test_expectations namespace
178 test_expectations.TestExpectations(), self._options, results)
test_expectations_unittest.py 9 from telemetry.page import test_expectations namespace
49 class SampleTestExpectations(test_expectations.TestExpectations):
  /external/chromium_org/tools/telemetry/telemetry/unittest/
page_test_test_case.py 16 from telemetry.page import test_expectations namespace
52 expectations=test_expectations.TestExpectations(),
  /external/skia/tools/
jsondiff.py 90 test_expectations = all_expectations[test_name]
91 allowed_digests = test_expectations[
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner_unittest.py 36 from webkitpy.layout_tests.models import test_expectations namespace
44 TestExpectations = test_expectations.TestExpectations
131 self.assertEqual(run_results.results_by_name['passes/text.html'].type, test_expectations.SKIP)
132 self.assertEqual(run_results.results_by_name['passes/image.html'].type, test_expectations.SKIP)
manager.py 49 from webkitpy.layout_tests.models import test_expectations namespace
59 TestExpectations = test_expectations.TestExpectations
147 return test_expectations.MISSING in expectations or test_expectations.NEEDS_REBASELINE in expectations or test_expectations.NEEDS_MANUAL_REBASELINE in expectations
150 return test_expectations.SLOW in self._expectations.model().get_expectations(test_file)
232 self._expectations = test_expectations.TestExpectations(self._port, test_names)
390 if (result.type != test_expectations.CRASH):
428 return [result.test_name for result in run_results.unexpected_results_by_name.values() if result.type != test_expectations.PASS]
496 if result.type != test_expectations.SKIP
    [all...]
manager_unittest.py 38 from webkitpy.layout_tests.models import test_expectations namespace
121 expectations = test_expectations.TestExpectations(port, tests)
layout_test_runner.py 37 from webkitpy.layout_tests.models import test_expectations namespace
46 TestExpectations = test_expectations.TestExpectations
96 result.type = test_expectations.SKIP
339 elif result.type == test_expectations.SKIP:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 29 """Checks WebKit style for test_expectations files."""
39 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser
61 # Suppress error messages of test_expectations module since they will be reported later.
62 log = logging.getLogger("webkitpy.layout_tests.layout_package.test_expectations")
test_expectations_unittest.py 33 from test_expectations import TestExpectationsChecker
60 """TestCase for test_expectations.py"""
  /external/chromium_org/base/test/expectations/
expectation.cc 17 namespace test_expectations { namespace
161 } // namespace test_expectations
parser.cc 9 namespace test_expectations { namespace
201 } // namespace test_expectations
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
flakytests.py 33 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser, TestExpectationsModel, TestExpectations
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
bot_test_expectations.py 39 from webkitpy.layout_tests.models.test_expectations import TestExpectations
40 from webkitpy.layout_tests.models.test_expectations import TestExpectationLine
bot_test_expectations_unittest.py 32 from webkitpy.layout_tests.models import test_expectations namespace
  /external/chromium_org/tools/telemetry/telemetry/
benchmark.py 19 from telemetry.page import test_expectations namespace
205 return test_expectations.TestExpectations()

Completed in 545 milliseconds

12 3