autotest: allow --moddebug to sim_vehicle.py

helps people debugging install
This commit is contained in:
Andrew Tridgell 2019-10-02 14:20:35 +10:00
parent 8686197c59
commit 185475d689

View File

@ -720,6 +720,8 @@ def start_mavproxy(opts, stuff):
cmd.append('--console')
if opts.aircraft is not None:
cmd.extend(['--aircraft', opts.aircraft])
if opts.moddebug:
cmd.append('--moddebug=%u' % opts.moddebug)
if opts.fresh_params:
# these were built earlier:
@ -979,6 +981,10 @@ group.add_option("", "--console",
group.add_option("", "--aircraft",
default=None,
help="store state and logs in named directory")
group.add_option("", "--moddebug",
default=0,
type=int,
help="mavproxy module debug")
parser.add_option_group(group)
cmd_opts, cmd_args = parser.parse_args()