| 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, url_prefixes=None): | 9 def __init__(self, conformance_path, url_prefixes=None): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 ['mac', 'intel'], bug=483282) | 428 ['mac', 'intel'], bug=483282) |
| 429 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 429 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| 430 'textureprojgrad.html', | 430 'textureprojgrad.html', |
| 431 ['mac', 'intel'], bug=483282) | 431 ['mac', 'intel'], bug=483282) |
| 432 | 432 |
| 433 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', | 433 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', |
| 434 ['mac', 'intel'], bug=483282) | 434 ['mac', 'intel'], bug=483282) |
| 435 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', | 435 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', |
| 436 ['mac', 'intel'], bug=483282) | 436 ['mac', 'intel'], bug=483282) |
| 437 | 437 |
| 438 self.Fail('conformance2/textures/image_data/' + |
| 439 'tex-2d-rgba8ui-rgba_integer-unsigned_byte.html', |
| 440 ['mac', 'intel'], bug=665197) |
| 441 self.Fail('conformance2/textures/image_data/' + |
| 442 'tex-2d-rgb8ui-rgb_integer-unsigned_byte.html', |
| 443 ['mac', 'intel'], bug=665197) |
| 444 self.Fail('conformance2/textures/image_data/' + |
| 445 'tex-2d-rg8ui-rg_integer-unsigned_byte.html', |
| 446 ['mac', 'intel'], bug=665197) |
| 447 self.Fail('conformance2/textures/image_data/' + |
| 448 'tex-2d-r8ui-red_integer-unsigned_byte.html', |
| 449 ['mac', 'intel'], bug=665197) |
| 450 |
| 438 # Fixed on OSX 10.11 | 451 # Fixed on OSX 10.11 |
| 439 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 452 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 440 ['mac', 'intel'], bug=618464) | 453 ['mac', 'intel'], bug=618464) |
| 441 | 454 |
| 442 # Linux only. | 455 # Linux only. |
| 443 self.Flaky('conformance/textures/video/' + | 456 self.Flaky('conformance/textures/video/' + |
| 444 'tex-2d-rgba-rgba-unsigned_byte.html', | 457 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 445 ['linux'], bug=627525) | 458 ['linux'], bug=627525) |
| 446 self.Flaky('conformance/textures/video/' + | 459 self.Flaky('conformance/textures/video/' + |
| 447 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 460 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 # self.Fail(page_name, | 780 # self.Fail(page_name, |
| 768 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 781 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 769 # self.Fail(page_name, | 782 # self.Fail(page_name, |
| 770 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 783 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 771 | 784 |
| 772 # Conflicts if between a generic os condition and a specific version | 785 # Conflicts if between a generic os condition and a specific version |
| 773 # self.Fail(page_name, | 786 # self.Fail(page_name, |
| 774 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 787 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 775 # self.Fail(page_name, | 788 # self.Fail(page_name, |
| 776 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 789 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |