Chromium Code Reviews| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 75 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 75 ['d3d9', 'd3d11', 'opengl'], bug=483282) |
| 76 | 76 |
| 77 # Avoid a conflict with a Mac expectation by setting | 77 # Avoid a conflict with a Mac expectation by setting |
| 78 self.Fail('conformance2/textures/misc/tex-input-validation.html', | 78 self.Fail('conformance2/textures/misc/tex-input-validation.html', |
| 79 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 79 ['d3d9', 'd3d11', 'opengl'], bug=483282) |
| 80 | 80 |
| 81 # Failing because the tests are using invalid combinations of source and | 81 # Failing because the tests are using invalid combinations of source and |
| 82 # destination formats, see https://github.com/KhronosGroup/WebGL/issues/1628 | 82 # destination formats, see https://github.com/KhronosGroup/WebGL/issues/1628 |
| 83 self.Fail('conformance2/textures/webgl_canvas/' + | 83 self.Fail('conformance2/textures/webgl_canvas/' + |
| 84 'tex-2d-rgb565-rgb-unsigned_byte.html', | 84 'tex-2d-rgb565-rgb-unsigned_byte.html', |
| 85 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 85 bug=483282) |
| 86 self.Fail('conformance2/textures/webgl_canvas/' + | 86 self.Fail('conformance2/textures/webgl_canvas/' + |
| 87 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html', | 87 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html', |
| 88 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 88 bug=483282) |
| 89 self.Fail('conformance2/textures/webgl_canvas/' + | 89 self.Fail('conformance2/textures/webgl_canvas/' + |
| 90 'tex-2d-rgb5_a1-rgba-unsigned_byte.html', | 90 'tex-2d-rgb5_a1-rgba-unsigned_byte.html', |
| 91 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 91 bug=483282) |
| 92 self.Fail('conformance2/textures/webgl_canvas/' + | 92 self.Fail('conformance2/textures/webgl_canvas/' + |
| 93 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', | 93 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', |
| 94 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 94 bug=483282) |
| 95 self.Fail('conformance2/textures/webgl_canvas/' + | 95 self.Fail('conformance2/textures/webgl_canvas/' + |
| 96 'tex-2d-rgba4-rgba-unsigned_byte.html', | 96 'tex-2d-rgba4-rgba-unsigned_byte.html', |
| 97 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 97 bug=483282) |
| 98 self.Fail('conformance2/textures/webgl_canvas/' + | 98 self.Fail('conformance2/textures/webgl_canvas/' + |
| 99 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html', | 99 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html', |
| 100 ['d3d9', 'd3d11', 'opengl'], bug=483282) | 100 bug=483282) |
| 101 self.Fail('conformance2/textures/canvas/' + | |
| 102 'tex-2d-rgb565-rgb-unsigned_byte.html', | |
| 103 bug=483282) | |
| 104 self.Fail('conformance2/textures/canvas/' + | |
| 105 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html', | |
| 106 bug=483282) | |
| 107 self.Fail('conformance2/textures/canvas/' + | |
| 108 'tex-2d-rgb5_a1-rgba-unsigned_byte.html', | |
| 109 bug=483282) | |
| 110 self.Fail('conformance2/textures/canvas/' + | |
| 111 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', | |
| 112 bug=483282) | |
| 113 self.Fail('conformance2/textures/canvas/' + | |
| 114 'tex-2d-rgba4-rgba-unsigned_byte.html', | |
| 115 bug=483282) | |
| 116 self.Fail('conformance2/textures/canvas/' + | |
| 117 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html', | |
| 118 bug=483282) | |
| 101 | 119 |
| 102 # Windows only. | 120 # Windows only. |
| 103 | 121 |
| 104 self.Fail('deqp/functional/gles3/vertexarrays.html', | 122 self.Fail('deqp/functional/gles3/vertexarrays.html', |
| 105 ['win'], bug=483282) | 123 ['win'], bug=483282) |
| 106 | 124 |
| 107 self.Fail('deqp/functional/gles3/texturespecification/' + | 125 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 108 'basic_copyteximage2d.html', | 126 'basic_copyteximage2d.html', |
| 109 ['win'], bug=483282) | 127 ['win'], bug=483282) |
| 110 | 128 |
| 111 self.Fail('conformance2/textures/canvas/' + | |
| 112 'tex-2d-rgb565-rgb-unsigned_byte.html', | |
| 113 ['win'], bug=483282) | |
|
Corentin Wallez
2016/06/02 21:29:40
likewise from Windows only to general.
Zhenyao Mo
2016/06/03 18:29:48
I actually did that :)
| |
| 114 self.Fail('conformance2/textures/canvas/' + | |
| 115 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html', | |
| 116 ['win'], bug=483282) | |
| 117 self.Fail('conformance2/textures/canvas/' + | |
| 118 'tex-2d-rgb5_a1-rgba-unsigned_byte.html', | |
| 119 ['win'], bug=483282) | |
| 120 self.Fail('conformance2/textures/canvas/' + | |
| 121 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', | |
| 122 ['win'], bug=483282) | |
| 123 self.Fail('conformance2/textures/canvas/' + | |
| 124 'tex-2d-rgba4-rgba-unsigned_byte.html', | |
| 125 ['win'], bug=483282) | |
| 126 self.Fail('conformance2/textures/canvas/' + | |
| 127 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html', | |
| 128 ['win'], bug=483282) | |
| 129 | |
| 130 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win'], bug=587601) | 129 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win'], bug=587601) |
| 131 | 130 |
| 132 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) | 131 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) |
| 133 self.Fail('conformance2/glsl3/array-in-complex-expression.html', | 132 self.Fail('conformance2/glsl3/array-in-complex-expression.html', |
| 134 ['win'], bug=483282) | 133 ['win'], bug=483282) |
| 135 self.Skip('conformance2/reading/read-pixels-pack-parameters.html', | 134 self.Skip('conformance2/reading/read-pixels-pack-parameters.html', |
| 136 ['win'], bug=483282) | 135 ['win'], bug=483282) |
| 137 self.Skip('conformance2/textures/misc/tex-mipmap-levels.html', | 136 self.Skip('conformance2/textures/misc/tex-mipmap-levels.html', |
| 138 ['win'], bug=483282) | 137 ['win'], bug=483282) |
| 139 self.Skip('conformance2/transform_feedback/transform_feedback.html', | 138 self.Skip('conformance2/transform_feedback/transform_feedback.html', |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 684 # self.Fail(page_name, | 683 # self.Fail(page_name, |
| 685 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 684 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 686 # self.Fail(page_name, | 685 # self.Fail(page_name, |
| 687 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 686 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 688 | 687 |
| 689 # Conflicts if between a generic os condition and a specific version | 688 # Conflicts if between a generic os condition and a specific version |
| 690 # self.Fail(page_name, | 689 # self.Fail(page_name, |
| 691 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 690 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 692 # self.Fail(page_name, | 691 # self.Fail(page_name, |
| 693 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 692 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |