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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 ['mac'], bug=483282) | 343 ['mac'], bug=483282) |
344 self.Fail('deqp/functional/gles3/pixelbufferobject.html', | 344 self.Fail('deqp/functional/gles3/pixelbufferobject.html', |
345 ['mac'], bug=483282) | 345 ['mac'], bug=483282) |
346 self.Fail('deqp/functional/gles3/texturestatequery.html', | 346 self.Fail('deqp/functional/gles3/texturestatequery.html', |
347 ['mac'], bug=483282) | 347 ['mac'], bug=483282) |
348 self.Fail('deqp/functional/gles3/negativeshaderapi.html', | 348 self.Fail('deqp/functional/gles3/negativeshaderapi.html', |
349 ['mac'], bug=483282) | 349 ['mac'], bug=483282) |
350 self.Fail('deqp/functional/gles3/vertexarrays.html', | 350 self.Fail('deqp/functional/gles3/vertexarrays.html', |
351 ['mac'], bug=483282) | 351 ['mac'], bug=483282) |
352 | 352 |
353 self.Fail('conformance2/buffers/buffer-overflow-test.html', | |
354 ['mac'], bug=483282) | |
355 self.Fail('conformance2/buffers/buffer-type-restrictions.html', | 353 self.Fail('conformance2/buffers/buffer-type-restrictions.html', |
356 ['mac'], bug=483282) | 354 ['mac'], bug=483282) |
357 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', | 355 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', |
358 ['mac'], bug=483282) | 356 ['mac'], bug=483282) |
359 self.Fail('conformance2/textures/misc/compressed-tex-image.html', | 357 self.Fail('conformance2/textures/misc/compressed-tex-image.html', |
360 ['mac'], bug=565438) | 358 ['mac'], bug=565438) |
361 self.Fail('conformance2/textures/misc/tex-new-formats.html', | 359 self.Fail('conformance2/textures/misc/tex-new-formats.html', |
362 ['mac'], bug=483282) | 360 ['mac'], bug=483282) |
363 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', | 361 self.Fail('conformance2/textures/misc/tex-storage-compressed-formats.html', |
364 ['mac'], bug=295792) | 362 ['mac'], bug=295792) |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 # self.Fail(page_name, | 520 # self.Fail(page_name, |
523 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 521 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
524 # self.Fail(page_name, | 522 # self.Fail(page_name, |
525 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 523 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
526 | 524 |
527 # Conflicts if between a generic os condition and a specific version | 525 # Conflicts if between a generic os condition and a specific version |
528 # self.Fail(page_name, | 526 # self.Fail(page_name, |
529 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 527 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
530 # self.Fail(page_name, | 528 # self.Fail(page_name, |
531 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 529 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
OLD | NEW |