Commit 183a454b by Jamie Madill Committed by Commit Bot

Test Runner: Use standard isolate script args.

This will allow the Android test runner to work seamlessly with the ANGLE GTest runner script. Bug: angleproject:3162 Change-Id: Id20d2fd05eb01e90a5a884891d9a1aa609ca744d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2407837Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent ed518d15
...@@ -82,10 +82,12 @@ def main(): ...@@ -82,10 +82,12 @@ def main():
try: try:
# Consider adding stdio control flags. # Consider adding stdio control flags.
if args.isolated_script_test_output: if args.isolated_script_test_output:
extra_flags.append('--results-file=%s' % args.isolated_script_test_output) extra_flags.append('--isolated-script-test-output=%s' %
args.isolated_script_test_output)
if args.isolated_script_test_perf_output: if args.isolated_script_test_perf_output:
extra_flags.append('--histogram-json-file=%s' % args.isolated_script_test_perf_output) extra_flags.append('--isolated-script-test-perf-output=%s' %
args.isolated_script_test_perf_output)
if args.isolated_script_test_filter: if args.isolated_script_test_filter:
filter_list = common.extract_filter_list(args.isolated_script_test_filter) filter_list = common.extract_filter_list(args.isolated_script_test_filter)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment