Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Side by Side Diff: content/test/gpu/gpu_tests/webgl_conformance_expectations.py

Issue 2206703002: Skip oes-texture-half-float-with-video.html on Nexus 5X. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 import os 4 import os
5 5
6 from gpu_tests.gpu_test_expectations import GpuTestExpectations 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations
7 7
8 # See the GpuTestExpectations class for documentation. 8 # See the GpuTestExpectations class for documentation.
9 9
10 class WebGLConformanceExpectations(GpuTestExpectations): 10 class WebGLConformanceExpectations(GpuTestExpectations):
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 122 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
123 self.Fail('conformance/extensions/oes-texture-float-with-image.html', 123 self.Fail('conformance/extensions/oes-texture-float-with-image.html',
124 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 124 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
125 self.Fail('conformance/extensions/oes-texture-half-float-with-canvas.html', 125 self.Fail('conformance/extensions/oes-texture-half-float-with-canvas.html',
126 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 126 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
127 self.Fail('conformance/extensions/' + 127 self.Fail('conformance/extensions/' +
128 'oes-texture-half-float-with-image-data.html', 128 'oes-texture-half-float-with-image-data.html',
129 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 129 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
130 self.Fail('conformance/extensions/oes-texture-half-float-with-image.html', 130 self.Fail('conformance/extensions/oes-texture-half-float-with-image.html',
131 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 131 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
132 self.Fail('conformance/extensions/oes-texture-half-float-with-video.html', 132 # This one is causing intermittent timeouts on the device, and it
133 # looks like when that happens, the next test also always times
134 # out. Skip it for now until it's fixed and running reliably.
135 self.Skip('conformance/extensions/oes-texture-half-float-with-video.html',
133 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 136 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
134 self.Fail('conformance/extensions/webgl-compressed-texture-atc.html', 137 self.Fail('conformance/extensions/webgl-compressed-texture-atc.html',
135 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 138 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
136 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html', 139 self.Fail('conformance/glsl/bugs/sampler-struct-function-arg.html',
137 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 140 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
138 # This test is skipped because it is crashing the GPU process. 141 # This test is skipped because it is crashing the GPU process.
139 self.Skip('conformance/glsl/misc/shader-with-non-reserved-words.html', 142 self.Skip('conformance/glsl/misc/shader-with-non-reserved-words.html',
140 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883) 143 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=609883)
141 self.Fail('WebglExtension.EXT_sRGB', 144 self.Fail('WebglExtension.EXT_sRGB',
142 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) 145 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951)
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 self.Fail('conformance/textures/misc/texture-npot.html', 968 self.Fail('conformance/textures/misc/texture-npot.html',
966 ['chromeos', ('intel', 0xa011)], bug=375554) 969 ['chromeos', ('intel', 0xa011)], bug=375554)
967 self.Fail('conformance/textures/misc/texture-npot-video.html', 970 self.Fail('conformance/textures/misc/texture-npot-video.html',
968 ['chromeos', ('intel', 0xa011)], bug=375554) 971 ['chromeos', ('intel', 0xa011)], bug=375554)
969 self.Fail('conformance/textures/misc/texture-size.html', 972 self.Fail('conformance/textures/misc/texture-size.html',
970 ['chromeos', ('intel', 0xa011)], bug=375554) 973 ['chromeos', ('intel', 0xa011)], bug=375554)
971 self.Fail('conformance/uniforms/gl-uniform-arrays.html', 974 self.Fail('conformance/uniforms/gl-uniform-arrays.html',
972 ['chromeos', ('intel', 0xa011)], bug=375554) 975 ['chromeos', ('intel', 0xa011)], bug=375554)
973 self.Skip('conformance/uniforms/uniform-default-values.html', 976 self.Skip('conformance/uniforms/uniform-default-values.html',
974 ['chromeos', ('intel', 0xa011)], bug=375554) 977 ['chromeos', ('intel', 0xa011)], bug=375554)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698