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

Unified Diff: tools/telemetry/telemetry/test_runner.py

Issue 22325006: Revert "Revert 215542 "[Telemetry] Add HTML output and make it the default."" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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
« no previous file with comments | « tools/telemetry/telemetry/test.py ('k') | tools/telemetry_tools/bootstrap_deps » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/test_runner.py
diff --git a/tools/telemetry/telemetry/test_runner.py b/tools/telemetry/telemetry/test_runner.py
index 1345eaaaf63dbdf0dfe9347d679b9cd8ae2a413d..ebae40cfa432b416947c6bb7bc80faff761fd469 100644
--- a/tools/telemetry/telemetry/test_runner.py
+++ b/tools/telemetry/telemetry/test_runner.py
@@ -17,6 +17,7 @@ import sys
from telemetry import test
from telemetry.core import browser_options
from telemetry.core import discover
+from telemetry.core import util
class Command(object):
@@ -120,7 +121,7 @@ def _GetScriptName():
def _GetTests():
# Lazy load and cache results.
if not hasattr(_GetTests, 'tests'):
- base_dir = test.GetBaseDir()
+ base_dir = util.GetBaseDir()
_GetTests.tests = discover.DiscoverClasses(base_dir, base_dir, test.Test,
index_by_class_name=True)
return _GetTests.tests
« no previous file with comments | « tools/telemetry/telemetry/test.py ('k') | tools/telemetry_tools/bootstrap_deps » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698