OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 | 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 GpuProcessExpectations(GpuTestExpectations): | 9 class GpuProcessExpectations(GpuTestExpectations): |
10 def SetExpectations(self): | 10 def SetExpectations(self): |
11 # Accelerated 2D canvas is not available on Linux due to driver instability | 11 # Accelerated 2D canvas is not available on Linux due to driver instability |
12 self.Fail('GpuProcess.canvas2d', ['linux'], bug=254724) | 12 self.Fail('GpuProcess_canvas2d', ['linux'], bug=254724) |
13 | 13 |
14 self.Fail('GpuProcess.video', ['linux'], bug=257109) | 14 self.Fail('GpuProcess_video', ['linux'], bug=257109) |
15 | 15 |
16 # Chrome on Android doesn't support software fallback. | 16 # Chrome on Android doesn't support software fallback. |
17 self.Skip('GpuProcess.no_gpu_process', ['android'], bug=643282) | 17 self.Skip('GpuProcess_no_gpu_process', ['android'], bug=643282) |
| 18 self.Skip('GpuProcess_skip_gpu_process', ['android'], bug=(610951, 610023)) |
18 | 19 |
19 # Nexus 5X | 20 # There is no Android multi-gpu configuration and the helper |
20 # Skip this test because expecting it to fail will still run it. | 21 # gpu_info_collector.cc::IdentifyActiveGPU is not even called. |
21 self.Skip('GpuProcess.skip_gpu_process', | 22 self.Skip('GpuProcess_identify_active_gpu1', ['android']) |
22 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) | 23 self.Skip('GpuProcess_identify_active_gpu2', ['android']) |
| 24 self.Skip('GpuProcess_identify_active_gpu3', ['android']) |
| 25 self.Skip('GpuProcess_identify_active_gpu4', ['android']) |
23 | 26 |
24 # Nexus 9 | 27 # There is currently no entry in kSoftwareRenderingListJson that enables |
25 # Skip this test because expecting it to fail will still run it. | 28 # a software GL driver on Android. |
26 self.Skip('GpuProcess.skip_gpu_process', | 29 self.Skip('GpuProcess_software_gpu_process', ['android']) |
27 ['android', 'nvidia'], bug=610023) | |
28 | |
29 # There are currently no blacklist entries disabling all GPU | |
30 # functionality on Mac OS. | |
31 self.Fail('GpuProcess.no_gpu_process', ['mac'], bug=579255) | |
OLD | NEW |