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

Unified Diff: testing/scripts/common.py

Issue 890653002: Add support for cc_perftests and other non-telemetry gtest based tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to target_platform. Created 5 years, 10 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 | « testing/buildbot/chromium.perf.json ('k') | testing/scripts/gtest_perf_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/scripts/common.py
diff --git a/testing/scripts/common.py b/testing/scripts/common.py
index f3617c7111ba0ada2a0bf3ce6e0c2de9e8051cf9..1aefcd5b79557d7eaeef85b379bf8fe093b5b1c9 100644
--- a/testing/scripts/common.py
+++ b/testing/scripts/common.py
@@ -30,7 +30,12 @@ def run_script(argv, funcs):
# TODO(phajdan.jr): Make build-config-fs required after passing it in recipe.
parser.add_argument('--build-config-fs')
parser.add_argument('--paths', type=parse_json, default={})
+ # Properties describe the environment of the build, and are the same per
+ # script invocation.
parser.add_argument('--properties', type=parse_json, default={})
+ # Args contains per-invocation arguments that potentially change the
+ # behavior of the script.
+ parser.add_argument('--args', type=parse_json, default=[])
subparsers = parser.add_subparsers()
« no previous file with comments | « testing/buildbot/chromium.perf.json ('k') | testing/scripts/gtest_perf_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698