Searched refs:test_expectations (Results 1 - 25 of 57) sorted by relevance

123

/external/chromium_org/content/test/gpu/gpu_tests/
H A Dmaps_expectations.py5 from telemetry.page import test_expectations namespace
21 class MapsExpectations(test_expectations.TestExpectations):
H A Dpixel_expectations.py5 from telemetry.page import test_expectations namespace
21 class PixelExpectations(test_expectations.TestExpectations):
H A Dcontext_lost_expectations.py5 from telemetry.page import test_expectations namespace
21 class ContextLostExpectations(test_expectations.TestExpectations):
H A Dmemory_test_expectations.py5 from telemetry.page import test_expectations namespace
21 class MemoryTestExpectations(test_expectations.TestExpectations):
H A Dscreenshot_sync_expectations.py5 from telemetry.page import test_expectations as expectations
H A Dhardware_accelerated_feature_expectations.py5 from telemetry.page import test_expectations as expectations
H A Dgpu_process_expectations.py5 from telemetry.page import test_expectations as expectations
/external/chromium_org/base/test/expectations/
H A Dexpectation_unittest.cc11 test_expectations::Result result = test_expectations::RESULT_PASS;
14 EXPECT_EQ(test_expectations::RESULT_FAILURE, result);
17 EXPECT_EQ(test_expectations::RESULT_TIMEOUT, result);
20 EXPECT_EQ(test_expectations::RESULT_CRASH, result);
23 EXPECT_EQ(test_expectations::RESULT_SKIP, result);
26 EXPECT_EQ(test_expectations::RESULT_PASS, result);
30 EXPECT_EQ(test_expectations::RESULT_PASS, result);
34 test_expectations::Configuration config =
35 test_expectations
[all...]
H A Dparser_unittest.cc13 using test_expectations::Parser;
19 const test_expectations::Expectation& expectation) OVERRIDE {
32 std::vector<test_expectations::Expectation> expectations_;
46 EXPECT_EQ(test_expectations::RESULT_TIMEOUT, expectations_[0].result);
47 EXPECT_EQ(test_expectations::CONFIGURATION_UNSPECIFIED,
62 EXPECT_EQ(test_expectations::RESULT_FAILURE,
64 EXPECT_EQ(test_expectations::CONFIGURATION_UNSPECIFIED,
85 EXPECT_EQ(test_expectations::RESULT_FAILURE,
87 EXPECT_EQ(test_expectations::CONFIGURATION_UNSPECIFIED,
92 EXPECT_EQ(test_expectations
[all...]
H A Dexpectation.h15 namespace test_expectations { namespace
92 } // namespace test_expectations
H A Dparser.h14 namespace test_expectations { namespace
141 } // namespace test_expectations
/external/chromium_org/media/tools/layout_tests/
H A Dlayouttests_unittest.py9 from test_expectations import TestExpectations
17 test_expectations = TestExpectations()
18 test_info_map = layouttests.JoinWithTestExpectation(test_expectations)
H A Dtest_expectations_unittest.py8 from test_expectations import TestExpectations
H A Dbug.py9 from webkitpy.layout_tests.models.test_expectations import *
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
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...]
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_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...]
/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/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/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):
/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))
/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/skia/tools/
H A Djsondiff.py90 test_expectations = all_expectations[test_name]
91 allowed_digests = test_expectations[
/external/skia/tools/
H A Djsondiff.py90 test_expectations = all_expectations[test_name]
91 allowed_digests = test_expectations[
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_runner_unittest.py20 from telemetry.page import test_expectations namespace
75 expectations = test_expectations.TestExpectations()
94 expectations = test_expectations.TestExpectations()
126 expectations = test_expectations.TestExpectations()
146 expectations = test_expectations.TestExpectations()
178 expectations = test_expectations.TestExpectations()
240 expectations = test_expectations.TestExpectations()
300 expectations = test_expectations.TestExpectations()
338 expectations = test_expectations.TestExpectations()
369 expectations = test_expectations
[all...]

Completed in 4124 milliseconds

123