| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s | 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s |
| 5 | 5 |
| 6 # See the GpuTestExpectations class for documentation. | 6 # See the GpuTestExpectations class for documentation. |
| 7 | 7 |
| 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
| 9 def __init__(self, conformance_path): | 9 def __init__(self, conformance_path): |
| 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 ['mac'], bug=612205) | 361 ['mac'], bug=612205) |
| 362 self.Fail('deqp/functional/gles3/texturewrap/e*', | 362 self.Fail('deqp/functional/gles3/texturewrap/e*', |
| 363 ['mac'], bug=612205) | 363 ['mac'], bug=612205) |
| 364 | 364 |
| 365 self.Fail('deqp/data/gles3/shaders/qualification_order.html', | 365 self.Fail('deqp/data/gles3/shaders/qualification_order.html', |
| 366 ['mac'], bug=483282) | 366 ['mac'], bug=483282) |
| 367 self.Fail('deqp/data/gles3/shaders/scoping.html', | 367 self.Fail('deqp/data/gles3/shaders/scoping.html', |
| 368 ['mac'], bug=483282) | 368 ['mac'], bug=483282) |
| 369 self.Fail('deqp/functional/gles3/pixelbufferobject.html', | 369 self.Fail('deqp/functional/gles3/pixelbufferobject.html', |
| 370 ['mac'], bug=483282) | 370 ['mac'], bug=483282) |
| 371 self.Fail('deqp/functional/gles3/texturestatequery.html', | |
| 372 ['mac'], bug=483282) | |
| 373 self.Fail('deqp/functional/gles3/negativeshaderapi.html', | 371 self.Fail('deqp/functional/gles3/negativeshaderapi.html', |
| 374 ['mac'], bug=483282) | 372 ['mac'], bug=483282) |
| 375 self.Fail('deqp/functional/gles3/vertexarrays.html', | 373 self.Fail('deqp/functional/gles3/vertexarrays.html', |
| 376 ['mac'], bug=483282) | 374 ['mac'], bug=483282) |
| 377 | 375 |
| 378 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', | 376 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', |
| 379 ['mac'], bug=483282) | 377 ['mac'], bug=483282) |
| 380 self.Fail('conformance2/textures/misc/compressed-tex-image.html', | 378 self.Fail('conformance2/textures/misc/compressed-tex-image.html', |
| 381 ['mac'], bug=565438) | 379 ['mac'], bug=565438) |
| 382 self.Fail('conformance2/textures/misc/tex-new-formats.html', | 380 self.Fail('conformance2/textures/misc/tex-new-formats.html', |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 # self.Fail(page_name, | 683 # self.Fail(page_name, |
| 686 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 684 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 687 # self.Fail(page_name, | 685 # self.Fail(page_name, |
| 688 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 686 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 689 | 687 |
| 690 # Conflicts if between a generic os condition and a specific version | 688 # Conflicts if between a generic os condition and a specific version |
| 691 # self.Fail(page_name, | 689 # self.Fail(page_name, |
| 692 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 690 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 693 # self.Fail(page_name, | 691 # self.Fail(page_name, |
| 694 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 692 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |