| OLD | NEW |
| 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 ContextLostExpectations(GpuTestExpectations): | 9 class ContextLostExpectations(GpuTestExpectations): |
| 10 def SetExpectations(self): | 10 def SetExpectations(self): |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 # Flaky retries aren't working well in this case. Need to shut | 21 # Flaky retries aren't working well in this case. Need to shut |
| 22 # down the browser between runs. This will be done in the new test | 22 # down the browser between runs. This will be done in the new test |
| 23 # harness (http://crbug.com/352807). | 23 # harness (http://crbug.com/352807). |
| 24 self.Fail('ContextLost.WebGLContextLostFromGPUProcessExit', | 24 self.Fail('ContextLost.WebGLContextLostFromGPUProcessExit', |
| 25 ['win7'], bug=619196) | 25 ['win7'], bug=619196) |
| 26 | 26 |
| 27 # Win8 Release and Debug NVIDIA bots. | 27 # Win8 Release and Debug NVIDIA bots. |
| 28 self.Skip('ContextLost.WebGLContextLostFromSelectElement', | 28 self.Skip('ContextLost.WebGLContextLostFromSelectElement', |
| 29 ['win8', 'nvidia'], bug=524808) | 29 ['win8', 'nvidia'], bug=524808) |
| 30 | 30 |
| 31 # Flaky on Win x64 Debug bot. |
| 32 # Unfortunately we can't identify this separately from the 32-bit bots. |
| 33 # Try marking it flaky to see if this works around the problem. |
| 34 self.Flaky('ContextLost.WebGLContextLostFromQuantity', |
| 35 ['win', 'debug'], bug=628697) |
| 36 |
| 31 # Flaky on Mac 10.7 and 10.8 resulting in crashes during browser | 37 # Flaky on Mac 10.7 and 10.8 resulting in crashes during browser |
| 32 # startup, so skip this test in those configurations. | 38 # startup, so skip this test in those configurations. |
| 33 self.Skip('ContextLost.WebGLContextLostFromSelectElement', | 39 self.Skip('ContextLost.WebGLContextLostFromSelectElement', |
| 34 ['mountainlion', 'debug'], bug=497411) | 40 ['mountainlion', 'debug'], bug=497411) |
| 35 self.Skip('ContextLost.WebGLContextLostFromSelectElement', | 41 self.Skip('ContextLost.WebGLContextLostFromSelectElement', |
| 36 ['lion', 'debug'], bug=498149) | 42 ['lion', 'debug'], bug=498149) |
| 37 | 43 |
| 38 # 'Browser must support tab control' raised on Android | 44 # 'Browser must support tab control' raised on Android |
| 39 self.Fail('GpuCrash.GPUProcessCrashesExactlyOnce', | 45 self.Fail('GpuCrash.GPUProcessCrashesExactlyOnce', |
| 40 ['android'], bug=609629) | 46 ['android'], bug=609629) |
| 41 self.Fail('ContextLost.WebGLContextLostFromGPUProcessExit', | 47 self.Fail('ContextLost.WebGLContextLostFromGPUProcessExit', |
| 42 ['android'], bug=609629) | 48 ['android'], bug=609629) |
| 43 self.Fail('ContextLost.WebGLContextLostInHiddenTab', | 49 self.Fail('ContextLost.WebGLContextLostInHiddenTab', |
| 44 ['android'], bug=609629) | 50 ['android'], bug=609629) |
| 45 | 51 |
| 46 # Nexus 6 | 52 # Nexus 6 |
| 47 # The Nexus 6 times out on these tests while waiting for the JS to complete | 53 # The Nexus 6 times out on these tests while waiting for the JS to complete |
| 48 self.Fail('ContextLost.WebGLContextLostFromLoseContextExtension', | 54 self.Fail('ContextLost.WebGLContextLostFromLoseContextExtension', |
| 49 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) | 55 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) |
| 50 self.Fail('ContextLost.WebGLContextLostFromQuantity', | 56 self.Fail('ContextLost.WebGLContextLostFromQuantity', |
| 51 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) | 57 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) |
| OLD | NEW |