| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 # basically any test that uses readPixels is potentially flaky, and | 499 # basically any test that uses readPixels is potentially flaky, and |
| 500 # it's infeasible to suppress individual failures one by one. | 500 # it's infeasible to suppress individual failures one by one. |
| 501 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) | 501 self.Flaky('conformance2/*', ['win', ('amd', 0x6779)], bug=491419) |
| 502 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) | 502 self.Flaky('deqp/*', ['win', ('amd', 0x6779)], bug=491419) |
| 503 | 503 |
| 504 # Win / Intel | 504 # Win / Intel |
| 505 self.Fail('conformance2/buffers/uniform-buffers.html', | 505 self.Fail('conformance2/buffers/uniform-buffers.html', |
| 506 ['win', 'intel'], bug=483282) | 506 ['win', 'intel'], bug=483282) |
| 507 | 507 |
| 508 # Win7 / NVidia / GeForce GT 730 | 508 # Win7 / NVidia / GeForce GT 730 |
| 509 # The following two use wildcards because the file names are over |
| 510 # 255 characters and are causing problems on the Windows bots. |
| 509 self.Fail('conformance2/textures/image_bitmap_from_image_bitmap/' + | 511 self.Fail('conformance2/textures/image_bitmap_from_image_bitmap/' + |
| 510 'tex-image-and-sub-image-2d-with-image-bitmap-from-image-bitmap-' + | 512 'tex-image-and-sub-image-2d-with-image-bitmap-from-image-bitmap-' + |
| 511 'r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html', | 513 'r11f_g11f_b10f-*.html', |
| 512 ['win7', ('nvidia', 0xf02)], bug=483282) | 514 ['win7', ('nvidia', 0xf02)], bug=483282) |
| 513 self.Fail('conformance2/textures/image_bitmap_from_image_bitmap/' + | 515 self.Fail('conformance2/textures/image_bitmap_from_image_bitmap/' + |
| 514 'tex-image-and-sub-image-3d-with-image-bitmap-from-image-bitmap-' + | 516 'tex-image-and-sub-image-3d-with-image-bitmap-from-image-bitmap-' + |
| 515 'r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev.html', | 517 'r11f_g11f_b10f-*.html', |
| 516 ['win7', ('nvidia', 0xf02)], bug=483282) | 518 ['win7', ('nvidia', 0xf02)], bug=483282) |
| 517 | 519 |
| 518 # Mac only. | 520 # Mac only. |
| 519 self.Skip('deqp/data/gles3/shaders/qualification_order.html', | 521 self.Skip('deqp/data/gles3/shaders/qualification_order.html', |
| 520 ['mac'], bug=483282) | 522 ['mac'], bug=483282) |
| 521 self.Skip('deqp/data/gles3/shaders/scoping.html', | 523 self.Skip('deqp/data/gles3/shaders/scoping.html', |
| 522 ['mac'], bug=483282) | 524 ['mac'], bug=483282) |
| 523 self.Skip('deqp/functional/gles3/defaultvertexattribute.html', | 525 self.Skip('deqp/functional/gles3/defaultvertexattribute.html', |
| 524 ['mac'], bug=483282) | 526 ['mac'], bug=483282) |
| 525 self.Skip('deqp/functional/gles3/floatstatequery.html', | 527 self.Skip('deqp/functional/gles3/floatstatequery.html', |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 # self.Fail(page_name, | 702 # self.Fail(page_name, |
| 701 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 703 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 702 # self.Fail(page_name, | 704 # self.Fail(page_name, |
| 703 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 705 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 704 | 706 |
| 705 # Conflicts if between a generic os condition and a specific version | 707 # Conflicts if between a generic os condition and a specific version |
| 706 # self.Fail(page_name, | 708 # self.Fail(page_name, |
| 707 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 709 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 708 # self.Fail(page_name, | 710 # self.Fail(page_name, |
| 709 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 711 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |