| Index: content/test/gpu/gpu_tests/maps_expectations.py
|
| diff --git a/content/test/gpu/gpu_tests/hardware_accelerated_feature_expectations.py b/content/test/gpu/gpu_tests/maps_expectations.py
|
| similarity index 60%
|
| copy from content/test/gpu/gpu_tests/hardware_accelerated_feature_expectations.py
|
| copy to content/test/gpu/gpu_tests/maps_expectations.py
|
| index a3015936daca16cf41e6ca61438a528b65d276f5..a3ad0fe5d7a8df7df2fd401ff67d13301db6d8cb 100644
|
| --- a/content/test/gpu/gpu_tests/hardware_accelerated_feature_expectations.py
|
| +++ b/content/test/gpu/gpu_tests/maps_expectations.py
|
| @@ -1,8 +1,8 @@
|
| -# Copyright 2013 The Chromium Authors. All rights reserved.
|
| +# Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -from telemetry.page import test_expectations as expectations
|
| +from telemetry.page import test_expectations
|
|
|
| # Valid expectation conditions are:
|
| #
|
| @@ -18,8 +18,10 @@ from telemetry.page import test_expectations as expectations
|
| # Examples: ('nvidia', 0x1234), ('arm', 'Mali-T604')
|
| # Device IDs must be paired with a GPU vendor.
|
|
|
| -class HardwareAcceleratedFeatureExpectations(expectations.TestExpectations):
|
| +class MapsExpectations(test_expectations.TestExpectations):
|
| def SetExpectations(self):
|
| - # Accelerated 2D canvas is not available on Linux due to driver instability
|
| - self.Fail('HardwareAcceleratedFeature.canvas_accelerated',
|
| - ['linux'], bug=254724)
|
| + # Sample Usage:
|
| + # self.Fail('Maps.maps_001',
|
| + # ['mac', 'amd', ('nvidia', 0x1234)], bug=123)
|
| +
|
| + pass
|
|
|