From c4eee32b83fae7bbce394aaed239d6bcb53dd995 Mon Sep 17 00:00:00 2001 From: ehmaldonado Date: Thu, 7 Sep 2017 00:34:17 -0700 Subject: [PATCH] Rename isolated-script-test-chartjson-output to isolated-script-test-perf-output. This is needed after the flag was renamed in https://chromium.googlesource.com/chromium/tools/build/+/3e6978a8c02dabd44a76e239554131a1014065a7 BUG=webrtc:8215 NOTRY=True Review-Url: https://codereview.webrtc.org/3005213002 Cr-Commit-Position: refs/heads/master@{#19721} --- tools_webrtc/gtest-parallel-wrapper.py | 4 ++-- tools_webrtc/valgrind/webrtc_tests.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools_webrtc/gtest-parallel-wrapper.py b/tools_webrtc/gtest-parallel-wrapper.py index de845b0ca7..b39bda6da5 100755 --- a/tools_webrtc/gtest-parallel-wrapper.py +++ b/tools_webrtc/gtest-parallel-wrapper.py @@ -31,7 +31,7 @@ For example: --another_flag \ -- \ --isolated-script-test-output=some_dir \ - --isolated-script-test-chartjson-output=some_other_dir \ + --isolated-script-test-perf-output=some_other_dir \ --foo=bar \ --baz @@ -78,7 +78,7 @@ def get_args_and_env(): # We don't need to implement this flag, and possibly can't, since it's # intended for results of Telemetry tests. See # https://chromium.googlesource.com/external/github.com/catapult-project/catapult/+/HEAD/dashboard/docs/data-format.md - parser.add_argument('--isolated-script-test-chartjson-output', type=str, + parser.add_argument('--isolated-script-test-perf-output', type=str, default=None) # No-sandbox is a Chromium-specific flag, ignore it. diff --git a/tools_webrtc/valgrind/webrtc_tests.py b/tools_webrtc/valgrind/webrtc_tests.py index dcd88e8566..7feb830f09 100755 --- a/tools_webrtc/valgrind/webrtc_tests.py +++ b/tools_webrtc/valgrind/webrtc_tests.py @@ -130,7 +130,7 @@ def main(_): # TODO(oprypin): Remove (bugs.webrtc.org/8115) ignore_parser.add_argument('--isolated-script-test-output', type=str, default=None) - ignore_parser.add_argument('--isolated-script-test-chartjson-output', + ignore_parser.add_argument('--isolated-script-test-perf-output', type=str, default=None) _, args = ignore_parser.parse_known_args(args)