| Index: content/test/gpu/gpu_tests/hardware_accelerated_feature_integration_test.py
|
| diff --git a/content/test/gpu/gpu_tests/hardware_accelerated_feature_integration_test.py b/content/test/gpu/gpu_tests/hardware_accelerated_feature_integration_test.py
|
| index fe0d42873aba1eeecd703b1b8d9aa0070cb1a5f1..f088b18a5ce72b5abe0643bda5a9aebfff25f479 100644
|
| --- a/content/test/gpu/gpu_tests/hardware_accelerated_feature_integration_test.py
|
| +++ b/content/test/gpu/gpu_tests/hardware_accelerated_feature_integration_test.py
|
| @@ -2,6 +2,8 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import sys
|
| +
|
| from gpu_tests import gpu_integration_test
|
| import gpu_tests.hardware_accelerated_feature_expectations as hw_expectations
|
|
|
| @@ -70,3 +72,7 @@ class HardwareAcceleratedFeatureIntegrationTest(
|
| print 'Test failed. Printing page contents:'
|
| print tab.EvaluateJavaScript('document.body.innerHTML')
|
| self.fail('%s not hardware accelerated' % feature)
|
| +
|
| +def load_tests(loader, tests, pattern):
|
| + del loader, tests, pattern # Unused.
|
| + return gpu_integration_test.LoadAllTestsInModule(sys.modules[__name__])
|
|
|