| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 bug=709484) | 106 bug=709484) |
| 107 | 107 |
| 108 self.Fail('conformance/glsl/misc/uninitialized-local-global-variables.html', | 108 self.Fail('conformance/glsl/misc/uninitialized-local-global-variables.html', |
| 109 bug=1966) # angle bug ID | 109 bug=1966) # angle bug ID |
| 110 | 110 |
| 111 # Passthrough command decoder | 111 # Passthrough command decoder |
| 112 self.Fail('conformance/extensions/ext-sRGB.html', | 112 self.Fail('conformance/extensions/ext-sRGB.html', |
| 113 ['passthrough'], bug=679696) | 113 ['passthrough'], bug=679696) |
| 114 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', | 114 self.Fail('conformance/extensions/ext-disjoint-timer-query.html', |
| 115 ['passthrough'], bug=1523) # angle bug ID | 115 ['passthrough'], bug=1523) # angle bug ID |
| 116 self.Fail('conformance/extensions/get-extension.html', |
| 117 ['passthrough'], bug=682745) |
| 116 self.Fail('conformance/extensions/oes-texture-float.html', | 118 self.Fail('conformance/extensions/oes-texture-float.html', |
| 117 ['passthrough'], bug=1523) # angle bug ID | 119 ['passthrough'], bug=1523) # angle bug ID |
| 118 self.Fail('conformance/extensions/oes-texture-float-linear.html', | 120 self.Fail('conformance/extensions/oes-texture-float-linear.html', |
| 119 ['passthrough'], bug=1523) # angle bug ID | 121 ['passthrough'], bug=1523) # angle bug ID |
| 120 self.Fail('conformance/extensions/oes-texture-half-float.html', | 122 self.Fail('conformance/extensions/oes-texture-half-float.html', |
| 121 ['passthrough'], bug=1523) # angle bug ID | 123 ['passthrough'], bug=1523) # angle bug ID |
| 122 self.Fail('conformance/extensions/oes-texture-half-float-linear.html', | 124 self.Fail('conformance/extensions/oes-texture-half-float-linear.html', |
| 123 ['passthrough'], bug=1523) # angle bug ID | 125 ['passthrough'], bug=1523) # angle bug ID |
| 124 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 126 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 125 ['passthrough'], bug=1523) # angle bug ID | 127 ['passthrough'], bug=1523) # angle bug ID |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 self.Fail('conformance/textures/misc/texture-npot.html', | 741 self.Fail('conformance/textures/misc/texture-npot.html', |
| 740 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 742 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 741 self.Fail('conformance/textures/misc/texture-npot-video.html', | 743 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 742 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) | 744 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) |
| 743 self.Fail('conformance/textures/misc/texture-size.html', | 745 self.Fail('conformance/textures/misc/texture-size.html', |
| 744 ['chromeos', ('intel', 0xa011)], bug=375554) | 746 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 745 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 747 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 746 ['chromeos', ('intel', 0xa011)], bug=375554) | 748 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 747 self.Skip('conformance/uniforms/uniform-default-values.html', | 749 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 748 ['chromeos', ('intel', 0xa011)], bug=375554) | 750 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |