autotest: disable flightgear output

burning CPU for no good reason
This commit is contained in:
Peter Barker 2021-11-30 00:18:52 +11:00 committed by Andrew Tridgell
parent 99b1659e4b
commit 5d811bf57e
1 changed files with 3 additions and 0 deletions

View File

@ -311,6 +311,7 @@ def start_SITL(binary,
disable_breakpoints=False,
customisations=[],
lldb=False,
enable_fgview_output=False,
supplementary=False):
if model is None and not supplementary:
@ -407,6 +408,8 @@ def start_SITL(binary,
cmd.extend(['--unhide-groups'])
# somewhere for MAVProxy to connect to:
cmd.append('--uartC=tcp:2')
if not enable_fgview_output:
cmd.append("--disable-fgview");
cmd.extend(customisations)