Use isolated-script-test-perf-output on low_bandwidth_audio_test.

Instead of chartjson-result-file, since that's the flag passed by the recipe.

TBR=phoglund@webrtc.org

Bug: chromium:807737
Change-Id: I3a679ab7e5c0a446e675d0f4647344cc4194b357
Reviewed-on: https://webrtc-review.googlesource.com/46541
Commit-Queue: Edward Lemur <ehmaldonado@webrtc.org>
Reviewed-by: Oleh Prypin <oprypin@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21858}
This commit is contained in:
Edward Lemur
2018-02-01 17:23:58 +01:00
committed by Commit Bot
parent 5f94aa2c01
commit ed7b4ff9e3

View File

@ -55,14 +55,12 @@ def _ParseArgs():
parser.add_argument('--android', action='store_true', parser.add_argument('--android', action='store_true',
help='Perform the test on a connected Android device instead.') help='Perform the test on a connected Android device instead.')
parser.add_argument('--adb-path', help='Path to adb binary.', default='adb') parser.add_argument('--adb-path', help='Path to adb binary.', default='adb')
parser.add_argument('--chartjson-result-file', parser.add_argument('--isolated-script-test-perf-output',
help='Where to store perf results in chartjson format.', default=None) help='Where to store perf results in chartjson format.', default=None)
# Ignore Chromium-specific flags # Ignore Chromium-specific flags
parser.add_argument('--isolated-script-test-output', parser.add_argument('--isolated-script-test-output',
type=str, default=None) type=str, default=None)
parser.add_argument('--isolated-script-test-perf-output',
type=str, default=None)
parser.add_argument('--test-launcher-summary-output', parser.add_argument('--test-launcher-summary-output',
type=str, default=None) type=str, default=None)
args = parser.parse_args() args = parser.parse_args()
@ -269,8 +267,8 @@ def main():
finally: finally:
test_process.terminate() test_process.terminate()
if args.chartjson_result_file: if args.isolated_script_test_perf_output:
with open(args.chartjson_result_file, 'w') as f: with open(args.isolated_script_test_perf_output, 'w') as f:
json.dump({"format_version": "1.0", "charts": charts}, f) json.dump({"format_version": "1.0", "charts": charts}, f)
return test_process.wait() return test_process.wait()