Searched defs:test_expectations (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/content/test/gpu/gpu_tests/
H A Dcontext_lost_expectations.py5 from telemetry.page import test_expectations namespace
21 class ContextLostExpectations(test_expectations.TestExpectations):
H A Dmaps_expectations.py5 from telemetry.page import test_expectations namespace
21 class MapsExpectations(test_expectations.TestExpectations):
H A Dmemory_test_expectations.py5 from telemetry.page import test_expectations namespace
21 class MemoryTestExpectations(test_expectations.TestExpectations):
H A Dpixel_expectations.py5 from telemetry.page import test_expectations namespace
21 class PixelExpectations(test_expectations.TestExpectations):
H A Dwebgl_conformance_expectations.py5 from telemetry.page import test_expectations namespace
21 class WebGLConformanceExpectations(test_expectations.TestExpectations):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dlayout_test_finder.py33 from webkitpy.layout_tests.models import test_expectations namespace
99 tests_to_skip = expectations.get_tests_with_result_type(test_expectations.SKIP)
101 tests_to_skip.update(expectations.get_tests_with_result_type(test_expectations.FAIL))
102 tests_to_skip.update(expectations.get_tests_with_result_type(test_expectations.FLAKY))
H A Dmanager_unittest.py38 from webkitpy.layout_tests.models import test_expectations namespace
121 expectations = test_expectations.TestExpectations(port, tests)
H A Dsingle_test_runner.py37 from webkitpy.layout_tests.models import test_expectations namespace
122 result.type = test_expectations.SKIP
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dbuildbot_results.py31 from webkitpy.layout_tests.models import test_expectations namespace
36 TestExpectations = test_expectations.TestExpectations
37 TestExpectationParser = test_expectations.TestExpectationParser
67 self._print_run_results_entry(run_results, test_expectations.NOW, "Tests to be fixed")
71 self._print_run_results_entry(run_results, test_expectations.WONTFIX,
78 len(run_results.tests_by_expectation[test_expectations.PASS] &
83 if result in (test_expectations.PASS, test_expectations.SKIP):
H A Dbuildbot_results_unittest.py34 from webkitpy.layout_tests.models import test_expectations namespace
H A Dprinting_unittest.py42 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:
/external/chromium_org/base/test/expectations/
H A Dparser.h14 namespace test_expectations { namespace
141 } // namespace test_expectations
H A Dexpectation.cc17 namespace test_expectations { namespace
161 } // namespace test_expectations
H A Dexpectation.h15 namespace test_expectations { namespace
92 } // namespace test_expectations
H A Dparser.cc9 namespace test_expectations { namespace
201 } // namespace test_expectations
/external/chromium_org/gpu/gles2_conform_support/
H A Dgles2_conform_test.cc37 gpu::GPUTestExpectationsParser test_expectations; local
38 if (!test_expectations.LoadTestExpectations(test_expectations_path)) {
55 test_expectations.GetTestExpectation(test_name, bot_config);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dbot_test_expectations_unittest.py32 from webkitpy.layout_tests.models import test_expectations namespace
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dlint_test_expectations.py35 from webkitpy.layout_tests.models import test_expectations namespace
66 test_expectations.TestExpectations(port_to_lint,
69 except test_expectations.ParseError as e:
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
H A Dlayouttestresults.py34 from webkitpy.layout_tests.models import test_expectations namespace
35 from webkitpy.layout_tests.models.test_expectations import TestExpectations
68 return test_expectations.PASS in self._actual_as_tokens()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_run_results.py35 from webkitpy.layout_tests.models import test_expectations namespace
96 for expectation in test_expectations.TestExpectations.EXPECTATIONS.values():
98 for timeline in test_expectations.TestExpectations.TIMELINES.values():
107 if test_expectations.WONTFIX in self.expectations.model().get_expectations(test_result.test_name):
108 result_type_for_stats = test_expectations.WONTFIX
112 if test_result.type != test_expectations.SKIP:
120 if test_result.type == test_expectations.SKIP:
122 elif test_result.type != test_expectations.PASS:
129 if test_result.type == test_expectations.CRASH:
131 elif test_result.type == test_expectations
[all...]
H A Dtest_run_results_unittest.py32 from webkitpy.layout_tests.models import test_expectations namespace
38 def get_result(test_name, result_type=test_expectations.PASS, run_time=0):
40 if result_type == test_expectations.TIMEOUT:
42 elif result_type == test_expectations.AUDIO:
44 elif result_type == test_expectations.CRASH:
46 elif result_type == test_expectations.LEAK:
54 expectations = test_expectations.TestExpectations(port, tests)
65 initial_results.add(get_result('passes/text.html', test_expectations.PASS), expected, test_is_slow)
66 initial_results.add(get_result('failures/expected/audio.html', test_expectations.AUDIO), expected, test_is_slow)
67 initial_results.add(get_result('failures/expected/timeout.html', test_expectations
[all...]
H A Dtest_failures.py31 from webkitpy.layout_tests.models import test_expectations namespace
46 one of the test_expectations result types - PASS, FAIL, CRASH, etc."""
49 return test_expectations.PASS
53 return test_expectations.CRASH
55 return test_expectations.LEAK
57 return test_expectations.TIMEOUT
59 return test_expectations.SKIP
64 return test_expectations.MISSING
72 return test_expectations.IMAGE_PLUS_TEXT
74 return test_expectations
[all...]
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dprofile_generator.py21 from telemetry.page import test_expectations namespace
71 expectations = test_expectations.TestExpectations()
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Dpage_test_test_case.py16 from telemetry.page import test_expectations namespace
52 expectations=test_expectations.TestExpectations(),
/external/chromium_org/tools/telemetry/telemetry/
H A Dbenchmark.py19 from telemetry.page import test_expectations namespace
205 return test_expectations.TestExpectations()

Completed in 7565 milliseconds

12