Rename isolated-script-test-chartjson-output to isolated-script-test-perf-output.

This is needed after the flag was renamed in
3e6978a8c0

BUG=webrtc:8215
NOTRY=True

Review-Url: https://codereview.webrtc.org/3005213002
Cr-Commit-Position: refs/heads/master@{#19721}
This commit is contained in:
ehmaldonado 2017-09-07 00:34:17 -07:00 committed by Commit Bot
parent 591753bf1a
commit c4eee32b83
2 changed files with 3 additions and 3 deletions

View file

@ -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.

View file

@ -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)