From fb409c975f770d2de9e019a7087163ad31d768ed Mon Sep 17 00:00:00 2001 From: Christoffer Jansson Date: Wed, 28 Sep 2022 14:21:43 +0200 Subject: [PATCH] Do not use gtest_parallell for fuchsia Bug: b/232740856 Change-Id: If1191c1e90b7eb18acd8e393f3927ddee4b92b34 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/277181 Reviewed-by: Jeremy Leconte Commit-Queue: Christoffer Jansson Cr-Commit-Position: refs/heads/main@{#38234} --- tools_webrtc/mb/mb.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools_webrtc/mb/mb.py b/tools_webrtc/mb/mb.py index 915a5b83ed..6dc64f9295 100755 --- a/tools_webrtc/mb/mb.py +++ b/tools_webrtc/mb/mb.py @@ -52,6 +52,7 @@ class WebRTCMetaBuildWrapper(mb.MetaBuildWrapper): test_type = isolate_map[target]['type'] is_android = 'target_os="android"' in vals['gn_args'] + is_fuchsia = 'target_os="fuchsia"' in vals['gn_args'] is_linux = self.platform.startswith('linux') and not is_android is_ios = 'target_os="ios"' in vals['gn_args'] @@ -85,6 +86,8 @@ class WebRTCMetaBuildWrapper(mb.MetaBuildWrapper): '--logcat-output-file', '${ISOLATED_OUTDIR}/logcats', '--store-tombstones' ] + elif is_fuchsia: + cmdline += ['bin/run_%s' % target] elif is_ios: cmdline += [ vpython_exe, '../../tools_webrtc/flags_compatibility.py',