| 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, is_asan=False): | 9 def __init__(self, conformance_path, url_prefixes=None, is_asan=False): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 ['mac', 'intel'], bug=665197) | 648 ['mac', 'intel'], bug=665197) |
| 649 | 649 |
| 650 self.Fail('conformance2/textures/misc/' + | 650 self.Fail('conformance2/textures/misc/' + |
| 651 'integer-cubemap-texture-sampling.html', | 651 'integer-cubemap-texture-sampling.html', |
| 652 ['mac', 'intel'], bug=658930) | 652 ['mac', 'intel'], bug=658930) |
| 653 | 653 |
| 654 # Fixed on OSX 10.11 | 654 # Fixed on OSX 10.11 |
| 655 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 655 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 656 ['mac', 'intel'], bug=618464) | 656 ['mac', 'intel'], bug=618464) |
| 657 | 657 |
| 658 # Mac ASAN only | |
| 659 self.Fail('conformance/more/functions/copyTexImage2D.html', | |
| 660 ['mac', 'asan'], bug=681641) | |
| 661 self.Fail('conformance/more/functions/copyTexSubImage2D.html', | |
| 662 ['mac', 'asan'], bug=681641) | |
| 663 self.Fail('deqp/functional/gles3/negativetextureapi.html', | |
| 664 ['mac', 'asan'], bug=681641) | |
| 665 self.Fail( | |
| 666 'deqp/functional/gles3/texturespecification/basic_copyteximage2d.html', | |
| 667 ['mac', 'asan'], bug=681641) | |
| 668 | |
| 669 # Linux only. | 658 # Linux only. |
| 670 self.Flaky('conformance/textures/video/' + | 659 self.Flaky('conformance/textures/video/' + |
| 671 'tex-2d-rgba-rgba-unsigned_byte.html', | 660 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 672 ['linux'], bug=627525) | 661 ['linux'], bug=627525) |
| 673 self.Flaky('conformance/textures/video/' + | 662 self.Flaky('conformance/textures/video/' + |
| 674 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 663 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| 675 ['linux'], bug=627525) | 664 ['linux'], bug=627525) |
| 676 self.Flaky('conformance/textures/video/' + | 665 self.Flaky('conformance/textures/video/' + |
| 677 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | 666 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', |
| 678 ['linux'], bug=627525) | 667 ['linux'], bug=627525) |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 # self.Fail(page_name, | 1051 # self.Fail(page_name, |
| 1063 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1052 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1064 # self.Fail(page_name, | 1053 # self.Fail(page_name, |
| 1065 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1054 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1066 | 1055 |
| 1067 # Conflicts if between a generic os condition and a specific version | 1056 # Conflicts if between a generic os condition and a specific version |
| 1068 # self.Fail(page_name, | 1057 # self.Fail(page_name, |
| 1069 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1058 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1070 # self.Fail(page_name, | 1059 # self.Fail(page_name, |
| 1071 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1060 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |