| OLD | NEW |
| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 self.Fail('conformance/textures/image_bitmap_from_image/' + | 190 self.Fail('conformance/textures/image_bitmap_from_image/' + |
| 191 'tex-2d-rgba-rgba-unsigned_byte.html', | 191 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 192 ['mac', 'intel'], bug=589930) | 192 ['mac', 'intel'], bug=589930) |
| 193 | 193 |
| 194 # Linux failures | 194 # Linux failures |
| 195 # NVIDIA | 195 # NVIDIA |
| 196 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 196 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 197 ['linux', 'nvidia'], bug=544989) # Too flaky to retry | 197 ['linux', 'nvidia'], bug=544989) # Too flaky to retry |
| 198 self.Flaky('conformance/extensions/oes-element-index-uint.html', | 198 self.Flaky('conformance/extensions/oes-element-index-uint.html', |
| 199 ['linux', 'nvidia'], bug=524144) | 199 ['linux', 'nvidia'], bug=524144) |
| 200 self.Flaky('conformance/textures/image/' + |
| 201 'tex-2d-rgb-rgb-unsigned_byte.html', |
| 202 ['linux', 'nvidia'], bug=596622) |
| 200 # AMD | 203 # AMD |
| 201 self.Flaky('conformance/more/functions/uniformi.html', | 204 self.Flaky('conformance/more/functions/uniformi.html', |
| 202 ['linux', 'amd'], bug=550989) | 205 ['linux', 'amd'], bug=550989) |
| 203 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 206 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 204 ['linux', 'amd'], bug=478572) | 207 ['linux', 'amd'], bug=478572) |
| 205 | 208 |
| 206 # AMD Radeon 6450 | 209 # AMD Radeon 6450 |
| 207 self.Fail('conformance/extensions/angle-instanced-arrays.html', | 210 self.Fail('conformance/extensions/angle-instanced-arrays.html', |
| 208 ['linux', ('amd', 0x6779)], bug=479260) | 211 ['linux', ('amd', 0x6779)], bug=479260) |
| 209 self.Flaky('conformance/extensions/ext-texture-filter-anisotropic.html', | 212 self.Flaky('conformance/extensions/ext-texture-filter-anisotropic.html', |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 self.Fail('conformance/textures/misc/texture-npot.html', | 457 self.Fail('conformance/textures/misc/texture-npot.html', |
| 455 ['chromeos', ('intel', 0xa011)], bug=375554) | 458 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 456 self.Fail('conformance/textures/misc/texture-npot-video.html', | 459 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 457 ['chromeos', ('intel', 0xa011)], bug=375554) | 460 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 458 self.Fail('conformance/textures/misc/texture-size.html', | 461 self.Fail('conformance/textures/misc/texture-size.html', |
| 459 ['chromeos', ('intel', 0xa011)], bug=375554) | 462 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 460 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 463 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 461 ['chromeos', ('intel', 0xa011)], bug=375554) | 464 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 462 self.Skip('conformance/uniforms/uniform-default-values.html', | 465 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 463 ['chromeos', ('intel', 0xa011)], bug=375554) | 466 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |