MB: Add --quick flag for low_bandwidth_audio_test

This seems to be the preferred way to pass flags to tests running on Swarming.

Add --quick flag to the low_bandwidth_audio_test and support for 'args' keyword
(similar to upstream Chromium's mb.py).
Change the type of the test to non_parallel_console_test_launcher to avoid
running with gtest-parallel, since it will swallow the stdout output.

BUG=webrtc:7229
NOTRY=True
TBR=ehmaldonado@webrtc.org

Review-Url: https://codereview.webrtc.org/2763323003
Cr-Commit-Position: refs/heads/master@{#17353}
This commit is contained in:
kjellander
2017-03-23 00:51:11 -07:00
committed by Commit bot
parent b0bf93a4b7
commit 74e8126ac9
2 changed files with 6 additions and 1 deletions

View File

@ -1135,6 +1135,8 @@ class MetaBuildWrapper(object):
'--tsan=%d' % tsan,
]
cmdline += isolate_map[target].get('args', [])
return cmdline, extra_files
def ToAbsPath(self, build_path, *comps):