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

Unified Diff: build/android/pylib/perf/test_runner.py

Issue 312293003: Android Perf tests: obtain the list of tests from the test runner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | « build/android/pylib/perf/test_options.py ('k') | build/android/test_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/perf/test_runner.py
diff --git a/build/android/pylib/perf/test_runner.py b/build/android/pylib/perf/test_runner.py
index 1d0a25cedbbda3a662651aa2f7f01d6059854f4e..9eeda20b349336f6431eab65ab5d3b06edc77cef 100644
--- a/build/android/pylib/perf/test_runner.py
+++ b/build/android/pylib/perf/test_runner.py
@@ -57,6 +57,7 @@ option:
import collections
import datetime
+import json
import logging
import os
import pickle
@@ -71,6 +72,19 @@ from pylib.base import base_test_result
from pylib.base import base_test_runner
+def OutputJsonList(json_input, json_output):
+ with file(json_input, 'r') as i:
+ all_steps = json.load(i)
+ # TODO(bulach): remove once it rolls downstream, crbug.com/378862.
+ if isinstance(all_steps, list):
+ step_names = [t[0] for t in all_steps]
+ else:
+ step_names = all_steps['steps'].keys()
+ with file(json_output, 'w') as o:
+ o.write(json.dumps(step_names))
+ return 0
+
+
def PrintTestOutput(test_name):
"""Helper method to print the output of previously executed test_name.
« no previous file with comments | « build/android/pylib/perf/test_options.py ('k') | build/android/test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698