Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: content/test/gpu/gpu_tests/pixel_expectations.py

Issue 2472783002: Disable display list for 2D canvas when the canvas is color managed (Closed)
Patch Set: Setting the browser pixel test to Fail for now. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 4
5 from gpu_tests.gpu_test_expectations import GpuTestExpectations 5 from gpu_tests.gpu_test_expectations import GpuTestExpectations
6 6
7 # See the GpuTestExpectations class for documentation. 7 # See the GpuTestExpectations class for documentation.
8 8
9 class PixelExpectations(GpuTestExpectations): 9 class PixelExpectations(GpuTestExpectations):
10 def SetExpectations(self): 10 def SetExpectations(self):
11 # Sample Usage: 11 # Sample Usage:
12 # self.Fail('Pixel_Canvas2DRedBox', 12 # self.Fail('Pixel_Canvas2DRedBox',
13 # ['mac', 'amd', ('nvidia', 0x1234)], bug=123) 13 # ['mac', 'amd', ('nvidia', 0x1234)], bug=123)
14 14
15 # Software compositing is not supported on Android; so we skip these tests 15 # Software compositing is not supported on Android; so we skip these tests
16 # that disables gpu compositing on Android platforms. 16 # that disables gpu compositing on Android platforms.
17 self.Skip('Pixel_OffscreenCanvasUnaccelerated2D', ['android']) 17 self.Skip('Pixel_OffscreenCanvasUnaccelerated2D', ['android'])
18 self.Skip('Pixel_OffscreenCanvasUnaccelerated2DWorker', ['android']) 18 self.Skip('Pixel_OffscreenCanvasUnaccelerated2DWorker', ['android'])
19 self.Skip('Pixel_OffscreenCanvasWebGLSoftwareCompositing', ['android']) 19 self.Skip('Pixel_OffscreenCanvasWebGLSoftwareCompositing', ['android'])
20 self.Skip('Pixel_OffscreenCanvasWebGLSoftwareCompositingWorker', 20 self.Skip('Pixel_OffscreenCanvasWebGLSoftwareCompositingWorker',
21 ['android']) 21 ['android'])
22 self.Skip('Pixel_CanvasDisplayLinearRGBUnaccelerated2D', ['android'])
Justin Novosad 2016/11/02 19:50:37 This skip can stay
zakerinasab 2016/11/02 19:57:23 Done.
23 22
24 self.Fail('Pixel_ScissorTestWithPreserveDrawingBuffer', 23 self.Fail('Pixel_ScissorTestWithPreserveDrawingBuffer',
25 ['android'], bug=521588) 24 ['android'], bug=521588)
26 25
27 self.Fail('Pixel_WebGLGreenTriangleES3', 26 self.Fail('Pixel_WebGLGreenTriangleES3',
28 ['mac', ('intel', 0x116)], bug=540531) 27 ['mac', ('intel', 0x116)], bug=540531)
29 28
30 # TODO(ccameron) fix these on Mac Retina 29 # TODO(ccameron) fix these on Mac Retina
31 self.Fail('Pixel_CSS3DBlueBox', ['mac'], bug=533690) 30 self.Fail('Pixel_CSS3DBlueBox', ['mac'], bug=533690)
32 self.Fail('Pixel_CSS3DBlueBoxES3', ['mac'], bug=533690) 31 self.Fail('Pixel_CSS3DBlueBoxES3', ['mac'], bug=533690)
33 32
34 # TODO(vmiura) check / generate reference images for Android devices 33 # TODO(vmiura) check / generate reference images for Android devices
35 self.Fail('Pixel_SolidColorBackground', ['mac', 'android'], bug=624256) 34 self.Fail('Pixel_SolidColorBackground', ['mac', 'android'], bug=624256)
36 35
37 self.Fail('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositing', bug=615325) 36 self.Fail('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositing', bug=615325)
38 self.Fail('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositingWorker', 37 self.Fail('Pixel_OffscreenCanvasUnaccelerated2DGPUCompositingWorker',
39 bug=615325) 38 bug=615325)
40 39
41 # TODO(kbr): flakily timing out on this configuration. 40 # TODO(kbr): flakily timing out on this configuration.
42 self.Flaky('*', ['linux', 'intel', 'debug'], bug=648369) 41 self.Flaky('*', ['linux', 'intel', 'debug'], bug=648369)
42
43 # TODO(zakerinasab): Check / generate reference images. Remove the Fail
44 # lines after fixing 659251 and comment out the Skip line.
45 self.Fail('Pixel_CanvasDisplayLinearRGBAccelerated2D', bug=659251)
46 self.Fail('Pixel_CanvasDisplayLinearRGBUnaccelerated2D', bug=659251)
47 self.Fail('Pixel_CanvasDisplayLinearRGBUnaccelerated2DGPUCompositing', bug=6 59251)
48 #self.Skip('Pixel_CanvasDisplayLinearRGBUnaccelerated2D', ['android'])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698