| Index: content/test/gpu/run_gpu_stress_tests
|
| diff --git a/tools/telemetry/run_tests b/content/test/gpu/run_gpu_stress_tests
|
| similarity index 68%
|
| copy from tools/telemetry/run_tests
|
| copy to content/test/gpu/run_gpu_stress_tests
|
| index 50d20acd0444953073ae14ce26c693974c3f57e6..38e96a01a6c4dead6b0ef4fdb6a494af7764bc60 100755
|
| --- a/tools/telemetry/run_tests
|
| +++ b/content/test/gpu/run_gpu_stress_tests
|
| @@ -1,18 +1,21 @@
|
| #!/usr/bin/env python
|
| -# Copyright (c) 2012 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.
|
| +
|
| +"""This script runs tests to verify that the GPU is working properly."""
|
| +
|
| import os
|
| import sys
|
|
|
| +import gpu_stress_tests
|
| from telemetry.test import gtest_testrunner
|
| from telemetry.test import run_tests
|
|
|
| if __name__ == '__main__':
|
| top_level_dir = os.path.abspath(os.path.dirname(__file__))
|
| runner = gtest_testrunner.GTestTestRunner(print_result_after_run=False)
|
| - start_dir = 'telemetry'
|
| - ret = run_tests.Main(sys.argv[1:], start_dir, top_level_dir, runner)
|
| + ret = run_tests.Main(sys.argv[1:], 'gpu_stress_tests', top_level_dir, runner)
|
|
|
| if runner.result:
|
| runner.result.PrintSummary()
|
|
|