| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 telemetry.page import test_expectations | 5 from telemetry.page import test_expectations |
| 6 | 6 |
| 7 class WebGLExpectations(test_expectations.TestExpectations): | 7 class WebGLExpectations(test_expectations.TestExpectations): |
| 8 def SetExpectations(self): | 8 def SetExpectations(self): |
| 9 self.Skip('*', ['arm', 'broadcom', 'hisilicon', 'imagination', 'qualcomm', | 9 self.Skip('*', ['arm', 'broadcom', 'hisilicon', 'imagination', 'qualcomm', |
| 10 'vivante'], bug=462729) | 10 'vivante'], bug=462729) |
| 11 |
| 12 |
| 13 class WebGLLowEndExpectations(test_expectations.TestExpectations): |
| 14 """Defines expectations to skip intensive tests on low-end devices.""" |
| 15 def SetExpectations(self): |
| 16 self.Skip('*', ['arm'], bug=464731) |
| OLD | NEW |