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