Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1546)

Unified Diff: content/test/gpu/run_gpu_stress_tests

Issue 11668013: Added GPU stress test with multiple tabs in one single window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moves tests to content/test/gpu. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()

Powered by Google App Engine
This is Rietveld 408576698