| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 self.Fail('deqp/functional/gles3/bufferobjectquery.html', | 555 self.Fail('deqp/functional/gles3/bufferobjectquery.html', |
| 556 ['linux', 'nvidia', 'opengl'], bug=483282) | 556 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 557 self.Fail('conformance2/buffers/bound-buffer-size-change-test.html', | 557 self.Fail('conformance2/buffers/bound-buffer-size-change-test.html', |
| 558 ['linux', 'nvidia', 'opengl'], bug=483282) | 558 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 559 self.Fail('conformance2/buffers/buffer-copying-contents.html', | 559 self.Fail('conformance2/buffers/buffer-copying-contents.html', |
| 560 ['linux', 'nvidia', 'opengl'], bug=483282) | 560 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 561 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 561 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 562 ['linux', 'nvidia', 'opengl'], bug=483282) | 562 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 563 self.Fail('conformance2/transform_feedback/transform_feedback.html', | 563 self.Fail('conformance2/transform_feedback/transform_feedback.html', |
| 564 ['linux', 'nvidia', 'opengl'], bug=483282) | 564 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 565 self.Fail('deqp/functional/gles3/fbocolorbuffer/*', |
| 566 ['linux', 'nvidia', 'opengl'], bug=618408) |
| 567 self.Fail('deqp/functional/gles3/transformfeedback.html', |
| 568 ['linux', 'nvidia', 'opengl'], bug=618408) |
| 569 self.Fail('deqp/functional/gles3/shaderbuiltinvar.html', |
| 570 ['linux', 'nvidia', 'opengl'], bug=618408) |
| 571 self.Fail('deqp/functional/gles3/shadercommonfunction.html', |
| 572 ['linux', 'nvidia', 'opengl'], bug=618408) |
| 565 | 573 |
| 566 # Linux Intel with ANGLE only | 574 # Linux Intel with ANGLE only |
| 567 self.Fail('deqp/functional/gles3/pixelbufferobject.html', | 575 self.Fail('deqp/functional/gles3/pixelbufferobject.html', |
| 568 ['linux', 'intel', 'opengl'], bug=483282) | 576 ['linux', 'intel', 'opengl'], bug=483282) |
| 569 | 577 |
| 570 # The Mesa Intel driver has a scoping bug, see | 578 # The Mesa Intel driver has a scoping bug, see |
| 571 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 | 579 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 |
| 572 self.Fail('deqp/data/gles3/shaders/scoping.html', | 580 self.Fail('deqp/data/gles3/shaders/scoping.html', |
| 573 ['linux', 'intel'], bug=610800) | 581 ['linux', 'intel'], bug=610800) |
| 574 | 582 |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 # self.Fail(page_name, | 743 # self.Fail(page_name, |
| 736 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 744 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 737 # self.Fail(page_name, | 745 # self.Fail(page_name, |
| 738 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 746 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 739 | 747 |
| 740 # Conflicts if between a generic os condition and a specific version | 748 # Conflicts if between a generic os condition and a specific version |
| 741 # self.Fail(page_name, | 749 # self.Fail(page_name, |
| 742 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 750 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 743 # self.Fail(page_name, | 751 # self.Fail(page_name, |
| 744 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 752 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |