/external/chromium_org/content/test/gpu/gpu_tests/ |
maps_expectations.py | 5 from telemetry.page import test_expectations namespace 21 class MapsExpectations(test_expectations.TestExpectations):
|
gpu_process_expectations.py | 5 from telemetry.page import test_expectations as expectations
|
hardware_accelerated_feature_expectations.py | 5 from telemetry.page import test_expectations as expectations
|
webgl_conformance_expectations.py | 5 from telemetry.page import test_expectations namespace 21 class WebGLConformanceExpectations(test_expectations.TestExpectations):
|
/external/chromium_org/base/test/expectations/ |
expectation_unittest.cc | 11 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::CONFIGURATION_UNSPECIFIED [all...] |
parser_unittest.cc | 13 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::RESULT_CRASH [all...] |
expectation.h | 15 namespace test_expectations { namespace 92 } // namespace test_expectations
|
parser.h | 14 namespace test_expectations { namespace 141 } // namespace test_expectations
|
/external/chromium_org/media/tools/layout_tests/ |
layouttests_unittest.py | 9 from test_expectations import TestExpectations 17 test_expectations = TestExpectations() 18 test_info_map = layouttests.JoinWithTestExpectation(test_expectations)
|
test_expectations_unittest.py | 8 from test_expectations import TestExpectations
|
bug.py | 9 from webkitpy.layout_tests.models.test_expectations import *
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
test_run_results.py | 34 from webkitpy.layout_tests.models import test_expectations namespace 87 for expectation in test_expectations.TestExpectations.EXPECTATIONS.values(): 89 for timeline in test_expectations.TestExpectations.TIMELINES.values(): 98 if test_expectations.WONTFIX in self.expectations.model().get_expectations(test_result.test_name): 99 result_type_for_stats = test_expectations.WONTFIX 103 if test_result.type != test_expectations.SKIP: 111 if test_result.type == test_expectations.SKIP: 113 elif test_result.type != test_expectations.PASS: 120 if test_result.type == test_expectations.CRASH: 122 elif test_result.type == test_expectations.TIMEOUT [all...] |
test_run_results_unittest.py | 32 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: 52 expectations = test_expectations.TestExpectations(port, tests) 63 initial_results.add(get_result('passes/text.html', test_expectations.PASS), expected, test_is_slow) 64 initial_results.add(get_result('failures/expected/audio.html', test_expectations.AUDIO), expected, test_is_slow) 65 initial_results.add(get_result('failures/expected/timeout.html', test_expectations.TIMEOUT), expected, test_is_slow) 66 initial_results.add(get_result('failures/expected/crash.html', test_expectations.CRASH), expected, test_is_slow [all...] |
test_failures.py | 31 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.TIMEOUT 57 return test_expectations.SKIP 62 return test_expectations.MISSING 69 return test_expectations.IMAGE_PLUS_TEXT 71 return test_expectations.TEXT 73 return test_expectations.IMAG [all...] |
/external/chromium_org/gpu/gles2_conform_support/ |
gles2_conform_test.cc | 37 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/tool/commands/ |
flakytests.py | 31 from webkitpy.layout_tests.models.test_expectations import TestExpectationParser, TestExpectationsModel, TestExpectations
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/ |
buildbot_results.py | 31 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/tools/telemetry/telemetry/page/ |
page_measurement_unittest_base.py | 11 from telemetry.page import test_expectations namespace 30 expectations=test_expectations.TestExpectations(),
|
page_runner_unittest.py | 17 from telemetry.page import test_expectations namespace 50 expectations = test_expectations.TestExpectations() 67 expectations = test_expectations.TestExpectations() 96 expectations = test_expectations.TestExpectations() 115 expectations = test_expectations.TestExpectations() 176 expectations = test_expectations.TestExpectations() 211 expectations = test_expectations.TestExpectations() 238 expectations = test_expectations.TestExpectations() 272 expectations = test_expectations.TestExpectations()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/ |
layouttestresults.py | 34 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/ |
lint_test_expectations.py | 35 from webkitpy.layout_tests.models import test_expectations namespace 72 test_expectations.TestExpectations(port_to_lint, 75 except test_expectations.ParseError as e:
|
layout_tests_mover.py | 57 from webkitpy.layout_tests.models.test_expectations import TestExpectations 160 test_expectations = TestExpectations(self._port, include_overrides=False, model_all_expectations=True) 162 for expectation in self._get_expectations(test_expectations.model(), self._origin): 169 test_expectations.remove_expectation_line(path) 170 test_expectations.add_expectation_line(LayoutTestsMover._clone_expectation_line_for_path(expectation, new_path)) 177 test_expectations.add_expectation_line(LayoutTestsMover._clone_expectation_line_for_path(expectation, new_path)) 181 TestExpectations.list_to_string(test_expectations._expectations, reconstitute_only_these=[]))
|
/external/chromium_org/tools/telemetry/telemetry/ |
test.py | 12 from telemetry.page import test_expectations namespace 84 return test_expectations.TestExpectations()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
layout_test_finder.py | 33 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))
|
manager.py | 49 from webkitpy.layout_tests.models import test_expectations namespace 59 TestExpectations = test_expectations.TestExpectations 143 return test_expectations.MISSING in expectations or test_expectations.NEEDS_REBASELINE in expectations or test_expectations.NEEDS_MANUAL_REBASELINE in expectations 146 return test_expectations.SLOW in self._expectations.model().get_expectations(test_file) 193 self._expectations = test_expectations.TestExpectations(self._port, test_names) 328 if (result.type != test_expectations.CRASH): 363 return [result.test_name for result in run_results.unexpected_results_by_name.values() if result.type != test_expectations.PASS] 431 if result.type != test_expectations.SKIP [all...] |