| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 self.Fail('conformance/extensions/oes-texture-float-with-image.html', | 281 self.Fail('conformance/extensions/oes-texture-float-with-image.html', |
| 282 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 282 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
| 283 self.Fail('conformance/textures/image_bitmap_from_blob/*', | 283 self.Fail('conformance/textures/image_bitmap_from_blob/*', |
| 284 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) | 284 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) |
| 285 self.Fail('conformance/textures/image_bitmap_from_canvas/*', | 285 self.Fail('conformance/textures/image_bitmap_from_canvas/*', |
| 286 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) | 286 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) |
| 287 self.Fail('conformance/textures/image_bitmap_from_image/*', | 287 self.Fail('conformance/textures/image_bitmap_from_image/*', |
| 288 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) | 288 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) |
| 289 self.Fail('conformance/textures/image_bitmap_from_image_data/*', | 289 self.Fail('conformance/textures/image_bitmap_from_image_data/*', |
| 290 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) | 290 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=585108) |
| 291 self.Fail('conformance/textures/image_bitmap_from_image_bitmap/*', |
| 292 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=598262) |
| 291 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + | 293 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + |
| 292 'video-rgb-rgb-unsigned_byte.html', | 294 'video-rgb-rgb-unsigned_byte.html', |
| 293 ['android', 'android-content-shell', | 295 ['android', 'android-content-shell', |
| 294 ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 296 ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
| 295 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + | 297 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + |
| 296 'video-rgba-rgba-unsigned_byte.html', | 298 'video-rgba-rgba-unsigned_byte.html', |
| 297 ['android', 'android-content-shell', | 299 ['android', 'android-content-shell', |
| 298 ('qualcomm', 'Adreno (TM) 420')], bug=499555) | 300 ('qualcomm', 'Adreno (TM) 420')], bug=499555) |
| 299 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + | 301 self.Fail('conformance/textures/video/tex-image-and-sub-image-2d-with-' + |
| 300 'video-rgb-rgb-unsigned_short_5_6_5.html', | 302 'video-rgb-rgb-unsigned_short_5_6_5.html', |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 self.Fail('conformance/textures/misc/texture-npot.html', | 419 self.Fail('conformance/textures/misc/texture-npot.html', |
| 418 ['chromeos', ('intel', 0xa011)], bug=375554) | 420 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 419 self.Fail('conformance/textures/misc/texture-npot-video.html', | 421 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 420 ['chromeos', ('intel', 0xa011)], bug=375554) | 422 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 421 self.Fail('conformance/textures/misc/texture-size.html', | 423 self.Fail('conformance/textures/misc/texture-size.html', |
| 422 ['chromeos', ('intel', 0xa011)], bug=375554) | 424 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 423 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 425 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 424 ['chromeos', ('intel', 0xa011)], bug=375554) | 426 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 425 self.Skip('conformance/uniforms/uniform-default-values.html', | 427 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 426 ['chromeos', ('intel', 0xa011)], bug=375554) | 428 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |