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

Unified Diff: content/test/gpu/gpu_stress_tests/__init__.py

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/gpu_stress_tests/__init__.py
diff --git a/content/test/gpu/gpu_tests/__init__.py b/content/test/gpu/gpu_stress_tests/__init__.py
similarity index 65%
copy from content/test/gpu/gpu_tests/__init__.py
copy to content/test/gpu/gpu_stress_tests/__init__.py
index 3b4df351fdb2b680fcfc75b209f1cd45b614f550..b4d3ae9bc9f41e6488e5a7961d2d28ba82cc1b11 100644
--- a/content/test/gpu/gpu_tests/__init__.py
+++ b/content/test/gpu/gpu_stress_tests/__init__.py
@@ -1,14 +1,16 @@
-# 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.
+
"""A library for Chrome GPU test code."""
+
import os
import sys
def Init():
telemetry_path = os.path.join(
- os.path.dirname(__file__),
- '..', '..', '..', '..', 'tools', 'telemetry')
+ os.path.dirname(__file__), os.pardir, os.pardir, os.pardir, os.pardir,
+ 'tools', 'telemetry')
absolute_telemetry_path = os.path.abspath(telemetry_path)
sys.path.append(absolute_telemetry_path)

Powered by Google App Engine
This is Rietveld 408576698