HomeSort by relevance Sort by last modified time
    Searched defs:test_expectations (Results 1 - 25 of 31) sorted by null

1 2

  /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):
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.cc 17 namespace test_expectations { namespace
160 } // namespace test_expectations
parser.h 14 namespace test_expectations { namespace
141 } // namespace test_expectations
expectation.h 15 namespace test_expectations { namespace
92 } // namespace test_expectations
parser.cc 9 namespace test_expectations { namespace
201 } // namespace test_expectations
  /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/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_unittest.py 38 from webkitpy.layout_tests.models import test_expectations namespace
117 expectations = test_expectations.TestExpectations(port, tests)
single_test_runner.py 36 from webkitpy.layout_tests.models import test_expectations namespace
118 result.type = test_expectations.SKIP
  /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:
  /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):
buildbot_results_unittest.py 35 from webkitpy.layout_tests.models import test_expectations namespace
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:
  /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(),
profile_generator.py 19 from telemetry.page import test_expectations namespace
40 expectations = test_expectations.TestExpectations()
record_wpr.py 24 from telemetry.page import test_expectations namespace
137 expectations = test_expectations.TestExpectations()
test_expectations_unittest.py 9 from telemetry.page import test_expectations namespace
49 class SampleTestExpectations(test_expectations.TestExpectations):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
bot_test_expectations_unittest.py 32 from webkitpy.layout_tests.models import test_expectations namespace
json_results_generator_unittest.py 36 from webkitpy.layout_tests.models import test_expectations namespace
  /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/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/models/
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...]
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...]

Completed in 722 milliseconds

1 2