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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 self.Fail('deqp/functional/gles3/bufferobjectquery.html', | 506 self.Fail('deqp/functional/gles3/bufferobjectquery.html', |
507 ['linux', 'nvidia', 'opengl'], bug=483282) | 507 ['linux', 'nvidia', 'opengl'], bug=483282) |
508 self.Fail('conformance2/buffers/bound-buffer-size-change-test.html', | 508 self.Fail('conformance2/buffers/bound-buffer-size-change-test.html', |
509 ['linux', 'nvidia', 'opengl'], bug=483282) | 509 ['linux', 'nvidia', 'opengl'], bug=483282) |
510 self.Fail('conformance2/buffers/buffer-copying-contents.html', | 510 self.Fail('conformance2/buffers/buffer-copying-contents.html', |
511 ['linux', 'nvidia', 'opengl'], bug=483282) | 511 ['linux', 'nvidia', 'opengl'], bug=483282) |
512 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 512 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
513 ['linux', 'nvidia', 'opengl'], bug=483282) | 513 ['linux', 'nvidia', 'opengl'], bug=483282) |
514 self.Fail('conformance2/transform_feedback/transform_feedback.html', | 514 self.Fail('conformance2/transform_feedback/transform_feedback.html', |
515 ['linux', 'nvidia', 'opengl'], bug=483282) | 515 ['linux', 'nvidia', 'opengl'], bug=483282) |
516 self.Fail('deqp/functional/gles3/uniformapi/value_assigned.html', | |
517 ['linux', 'nvidia', 'opengl'], bug=483282) | |
518 | 516 |
519 # Linux Intel with ANGLE only | 517 # Linux Intel with ANGLE only |
520 self.Fail('deqp/functional/gles3/pixelbufferobject.html', | 518 self.Fail('deqp/functional/gles3/pixelbufferobject.html', |
521 ['linux', 'intel', 'opengl'], bug=483282) | 519 ['linux', 'intel', 'opengl'], bug=483282) |
522 | 520 |
523 # The Mesa Intel driver has a scoping bug, see | 521 # The Mesa Intel driver has a scoping bug, see |
524 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 | 522 # https://bugs.freedesktop.org/show_bug.cgi?id=95184 |
525 self.Fail('deqp/data/gles3/shaders/scoping.html', | 523 self.Fail('deqp/data/gles3/shaders/scoping.html', |
526 ['linux', 'intel'], bug=610800) | 524 ['linux', 'intel'], bug=610800) |
527 | 525 |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 # self.Fail(page_name, | 686 # self.Fail(page_name, |
689 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 687 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
690 # self.Fail(page_name, | 688 # self.Fail(page_name, |
691 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 689 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
692 | 690 |
693 # Conflicts if between a generic os condition and a specific version | 691 # Conflicts if between a generic os condition and a specific version |
694 # self.Fail(page_name, | 692 # self.Fail(page_name, |
695 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 693 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
696 # self.Fail(page_name, | 694 # self.Fail(page_name, |
697 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 695 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |