| 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 | 624 |
| 625 # Linux Intel with ANGLE only | 625 # Linux Intel with ANGLE only |
| 626 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', | 626 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', |
| 627 ['linux', 'intel', 'opengl'], bug=635528) | 627 ['linux', 'intel', 'opengl'], bug=635528) |
| 628 self.Fail('deqp/functional/gles3/fragmentoutput/*.html', | 628 self.Fail('deqp/functional/gles3/fragmentoutput/*.html', |
| 629 ['linux', 'intel', 'opengl'], bug=598902) | 629 ['linux', 'intel', 'opengl'], bug=598902) |
| 630 | 630 |
| 631 # Linux Intel without ANGLE only | 631 # Linux Intel without ANGLE only |
| 632 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', | 632 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', |
| 633 ['linux', 'intel', 'no_angle'], bug=598902) | 633 ['linux', 'intel', 'no_angle'], bug=598902) |
| 634 self.Fail('deqp/functional/gles3/fbomultisample.8_samples.html', |
| 635 ['linux', 'intel', 'no_angle'], bug=640395) |
| 634 | 636 |
| 635 # Linux AMD only. | 637 # Linux AMD only. |
| 636 # It looks like AMD shader compiler rejects many valid ES3 semantics. | 638 # It looks like AMD shader compiler rejects many valid ES3 semantics. |
| 637 self.Fail('deqp/data/gles3/shaders/conversions.html', | 639 self.Fail('deqp/data/gles3/shaders/conversions.html', |
| 638 ['linux', 'amd'], bug=483282) | 640 ['linux', 'amd'], bug=483282) |
| 639 self.Skip('deqp/data/gles3/shaders/arrays.html', | 641 self.Skip('deqp/data/gles3/shaders/arrays.html', |
| 640 ['linux', 'amd'], bug=483282) | 642 ['linux', 'amd'], bug=483282) |
| 641 self.Fail('deqp/functional/gles3/internalformatquery.html', | 643 self.Fail('deqp/functional/gles3/internalformatquery.html', |
| 642 ['linux', 'amd'], bug=483282) | 644 ['linux', 'amd'], bug=483282) |
| 643 self.Fail('deqp/functional/gles3/texturestatequery.html', | 645 self.Fail('deqp/functional/gles3/texturestatequery.html', |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 # self.Fail(page_name, | 899 # self.Fail(page_name, |
| 898 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 900 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 899 # self.Fail(page_name, | 901 # self.Fail(page_name, |
| 900 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 902 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 901 | 903 |
| 902 # Conflicts if between a generic os condition and a specific version | 904 # Conflicts if between a generic os condition and a specific version |
| 903 # self.Fail(page_name, | 905 # self.Fail(page_name, |
| 904 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 906 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 905 # self.Fail(page_name, | 907 # self.Fail(page_name, |
| 906 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 908 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |