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. | 31 # Flakily timing out on Win x64 Debug bot. |
32 # Unfortunately we can't identify this separately from the 32-bit bots. | 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. | 33 # Also unfortunately, the flaky retry mechanism doesn't work well in |
34 self.Flaky('ContextLost.WebGLContextLostFromQuantity', | 34 # this harness if the test times out. Skip it on this configuration for |
35 ['win', 'debug'], bug=628697) | 35 # now. |
| 36 self.Skip('ContextLost.WebGLContextLostFromQuantity', |
| 37 ['win', 'debug'], bug=628697) |
36 | 38 |
37 # Flaky on Mac 10.7 and 10.8 resulting in crashes during browser | 39 # Flaky on Mac 10.7 and 10.8 resulting in crashes during browser |
38 # startup, so skip this test in those configurations. | 40 # startup, so skip this test in those configurations. |
39 self.Skip('ContextLost.WebGLContextLostFromSelectElement', | 41 self.Skip('ContextLost.WebGLContextLostFromSelectElement', |
40 ['mountainlion', 'debug'], bug=497411) | 42 ['mountainlion', 'debug'], bug=497411) |
41 self.Skip('ContextLost.WebGLContextLostFromSelectElement', | 43 self.Skip('ContextLost.WebGLContextLostFromSelectElement', |
42 ['lion', 'debug'], bug=498149) | 44 ['lion', 'debug'], bug=498149) |
43 | 45 |
44 # 'Browser must support tab control' raised on Android | 46 # 'Browser must support tab control' raised on Android |
45 self.Fail('GpuCrash.GPUProcessCrashesExactlyOnce', | 47 self.Fail('GpuCrash.GPUProcessCrashesExactlyOnce', |
46 ['android'], bug=609629) | 48 ['android'], bug=609629) |
47 self.Fail('ContextLost.WebGLContextLostFromGPUProcessExit', | 49 self.Fail('ContextLost.WebGLContextLostFromGPUProcessExit', |
48 ['android'], bug=609629) | 50 ['android'], bug=609629) |
49 self.Fail('ContextLost.WebGLContextLostInHiddenTab', | 51 self.Fail('ContextLost.WebGLContextLostInHiddenTab', |
50 ['android'], bug=609629) | 52 ['android'], bug=609629) |
51 | 53 |
52 # Nexus 6 | 54 # Nexus 6 |
53 # The Nexus 6 times out on these tests while waiting for the JS to complete | 55 # The Nexus 6 times out on these tests while waiting for the JS to complete |
54 self.Fail('ContextLost.WebGLContextLostFromLoseContextExtension', | 56 self.Fail('ContextLost.WebGLContextLostFromLoseContextExtension', |
55 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) | 57 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) |
56 self.Fail('ContextLost.WebGLContextLostFromQuantity', | 58 self.Fail('ContextLost.WebGLContextLostFromQuantity', |
57 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) | 59 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611906) |
OLD | NEW |