| 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 self.Skip('GpuProcess_skip_gpu_process', ['android'], bug=(610951, 610023)) |
| 19 | 19 |
| 20 # Chrome on Windows and Linux create a GPU process that uses SwiftShader | 20 # Chrome on Windows and Linux create a GPU process that uses SwiftShader |
| 21 # when using either --disable-gpu or a blacklisted GPU. | 21 # when using either --disable-gpu or a blacklisted GPU. |
| 22 self.Skip('GpuProcess_no_gpu_process', ['win', 'debug'], bug=630728) | |
| 23 self.Skip('GpuProcess_skip_gpu_process', ['win', 'linux'], bug=630728) | 22 self.Skip('GpuProcess_skip_gpu_process', ['win', 'linux'], bug=630728) |
| 24 | 23 |
| 25 # Currently SwiftShader is integrated only on Windows and Linux. Remove | 24 # Currently SwiftShader is integrated only on Windows and Linux. Remove |
| 26 # platforms from this suppression as it is integrated on more platforms. | 25 # platforms from this suppression as it is integrated on more platforms. |
| 27 self.Skip('GpuProcess_swiftshader_for_webgl', | 26 self.Skip('GpuProcess_swiftshader_for_webgl', |
| 28 ['mac', 'android', 'chromeos'], bug=630728) | 27 ['mac', 'android', 'chromeos'], bug=630728) |
| 29 | 28 |
| 30 # There is no Android multi-gpu configuration and the helper | 29 # There is no Android multi-gpu configuration and the helper |
| 31 # gpu_info_collector.cc::IdentifyActiveGPU is not even called. | 30 # gpu_info_collector.cc::IdentifyActiveGPU is not even called. |
| 32 self.Skip('GpuProcess_identify_active_gpu1', ['android']) | 31 self.Skip('GpuProcess_identify_active_gpu1', ['android']) |
| 33 self.Skip('GpuProcess_identify_active_gpu2', ['android']) | 32 self.Skip('GpuProcess_identify_active_gpu2', ['android']) |
| 34 self.Skip('GpuProcess_identify_active_gpu3', ['android']) | 33 self.Skip('GpuProcess_identify_active_gpu3', ['android']) |
| 35 self.Skip('GpuProcess_identify_active_gpu4', ['android']) | 34 self.Skip('GpuProcess_identify_active_gpu4', ['android']) |
| 36 | 35 |
| 37 # There is currently no entry in kSoftwareRenderingListJson that enables | 36 # There is currently no entry in kSoftwareRenderingListJson that enables |
| 38 # a software GL driver on Android. | 37 # a software GL driver on Android. |
| 39 self.Skip('GpuProcess_software_gpu_process', ['android']) | 38 self.Skip('GpuProcess_software_gpu_process', ['android']) |
| 40 | 39 |
| 41 # Seems to have become flaky on Windows recently. | 40 # Seems to have become flaky on Windows recently. |
| 42 self.Flaky('GpuProcess_only_one_workaround', ['win'], bug=700522) | 41 self.Flaky('GpuProcess_only_one_workaround', ['win'], bug=700522) |
| OLD | NEW |