| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 self.Fail('conformance/rendering/point-specific-shader-variables.html', | 109 self.Fail('conformance/rendering/point-specific-shader-variables.html', |
| 110 ['win'], bug=616335) | 110 ['win'], bug=616335) |
| 111 self.Fail('deqp/data/gles2/shaders/functions.html', | 111 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 112 ['win'], bug=478572) | 112 ['win'], bug=478572) |
| 113 | 113 |
| 114 # Win NVIDIA failures | 114 # Win NVIDIA failures |
| 115 self.Flaky('conformance/textures/misc/texture-npot-video.html', | 115 self.Flaky('conformance/textures/misc/texture-npot-video.html', |
| 116 ['win', 'nvidia', 'no_passthrough'], bug=626524) | 116 ['win', 'nvidia', 'no_passthrough'], bug=626524) |
| 117 self.Flaky('conformance/textures/misc/texture-upload-size.html', | 117 self.Flaky('conformance/textures/misc/texture-upload-size.html', |
| 118 ['win', 'nvidia'], bug=630860) | 118 ['win', 'nvidia'], bug=630860) |
| 119 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', | |
| 120 ['win', 'nvidia'], bug=672380) | |
| 121 self.Fail('conformance/extensions/ext-sRGB.html', | 119 self.Fail('conformance/extensions/ext-sRGB.html', |
| 122 ['win', 'nvidia', 'no_passthrough'], bug=679696) | 120 ['win', 'nvidia', 'no_passthrough'], bug=679696) |
| 123 | 121 |
| 124 # Win10 / NVIDIA Quadro M2000 / D3D9 failures | 122 # Win10 / NVIDIA Quadro M2000 / D3D9 failures |
| 125 self.Fail('conformance/canvas/drawingbuffer-static-canvas-test.html', | 123 self.Fail('conformance/canvas/drawingbuffer-static-canvas-test.html', |
| 126 ['win10', ('nvidia', 0x1430), 'd3d9'], bug=680754) | 124 ['win10', ('nvidia', 0x1430), 'd3d9'], bug=680754) |
| 127 self.Fail('conformance/canvas/' + | 125 self.Fail('conformance/canvas/' + |
| 128 'framebuffer-bindings-affected-by-to-data-url.html', | 126 'framebuffer-bindings-affected-by-to-data-url.html', |
| 129 ['win10', ('nvidia', 0x1430), 'd3d9'], bug=680754) | 127 ['win10', ('nvidia', 0x1430), 'd3d9'], bug=680754) |
| 130 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', | 128 self.Fail('conformance/ogles/GL/cos/cos_001_to_006.html', |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 self.Fail('conformance/textures/misc/texture-npot.html', | 681 self.Fail('conformance/textures/misc/texture-npot.html', |
| 684 ['chromeos', ('intel', 0xa011)], bug=375554) | 682 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 685 self.Fail('conformance/textures/misc/texture-npot-video.html', | 683 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 686 ['chromeos', ('intel', 0xa011)], bug=375554) | 684 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 687 self.Fail('conformance/textures/misc/texture-size.html', | 685 self.Fail('conformance/textures/misc/texture-size.html', |
| 688 ['chromeos', ('intel', 0xa011)], bug=375554) | 686 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 689 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 687 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 690 ['chromeos', ('intel', 0xa011)], bug=375554) | 688 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 691 self.Skip('conformance/uniforms/uniform-default-values.html', | 689 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 692 ['chromeos', ('intel', 0xa011)], bug=375554) | 690 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |