diff options
author | sunnyps <sunnyps@chromium.org> | 2015-04-10 17:01:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-11 00:02:32 +0000 |
commit | cdd632409d0fa097402af668f32a40bf95124b36 (patch) | |
tree | 3c07fb828e4c5d189085b50c9db9ad2dc66bb356 /content | |
parent | 56fb79777175f24cd03aec6602b85c199a567bd0 (diff) | |
download | chromium_src-cdd632409d0fa097402af668f32a40bf95124b36.zip chromium_src-cdd632409d0fa097402af668f32a40bf95124b36.tar.gz chromium_src-cdd632409d0fa097402af668f32a40bf95124b36.tar.bz2 |
webgl: Suppress conformance test failures for Linux AMD Radeon 6450.
This CL suppresses the following failures on the Linux ATI GPU FYI bot:
WebglConformance.conformance_extensions_ext_texture_filter_anisotropic
WebglConformance.conformance_glsl_misc_shader_struct_scope
WebglConformance.conformance_glsl_misc_struct_nesting_of_variable_names
WebglConformance.conformance_rendering_point_size
WebglConformance.conformance_textures_texture_sub_image_cube_maps
BUG=436212
Review URL: https://codereview.chromium.org/1081463002
Cr-Commit-Position: refs/heads/master@{#324722}
Diffstat (limited to 'content')
-rw-r--r-- | content/test/gpu/gpu_tests/webgl_conformance_expectations.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/content/test/gpu/gpu_tests/webgl_conformance_expectations.py b/content/test/gpu/gpu_tests/webgl_conformance_expectations.py index 3331a7a..fa4e3b0 100644 --- a/content/test/gpu/gpu_tests/webgl_conformance_expectations.py +++ b/content/test/gpu/gpu_tests/webgl_conformance_expectations.py @@ -147,8 +147,10 @@ class WebGLConformanceExpectations(GpuTestExpectations): ['lion', 'intel'], bug=393331) # Linux failures + # NVIDIA self.Fail('conformance/textures/default-texture.html', ['linux', ('nvidia', 0x104a)], bug=422152) + # AMD Radeon 5450 self.Fail('conformance/programs/program-test.html', ['linux', ('amd', 0x68f9)], bug=436212) self.Fail('conformance/rendering/multisample-corruption.html', @@ -183,6 +185,17 @@ class WebGLConformanceExpectations(GpuTestExpectations): ['linux', ('amd', 0x68f9)], bug=436212) self.Fail('conformance/more/functions/texSubImage2DHTML.html', ['linux', ('amd', 0x68f9)], bug=436212) + # AMD Radeon 6450 + self.Fail('conformance/extensions/ext-texture-filter-anisotropic.html', + ['linux', ('amd', 0x6779)], bug=436212) + self.Fail('conformance/glsl/misc/shader-struct-scope.html', + ['linux', ('amd', 0x6779)], bug=436212) + self.Fail('conformance/glsl/misc/struct-nesting-of-variable-names.html', + ['linux', ('amd', 0x6779)], bug=436212) + self.Fail('conformance/rendering/point-size.html', + ['linux', ('amd', 0x6779)], bug=436212) + self.Fail('conformance/textures/texture-sub-image-cube-maps.html', + ['linux', ('amd', 0x6779)], bug=436212) # Android failures # The following test is very slow and therefore times out on Android bot. |