autotest: disable gdb pagination

This commit is contained in:
Peter Barker 2020-07-03 15:43:08 +10:00 committed by Peter Barker
parent 560b4a9847
commit a0258f351d
1 changed files with 1 additions and 0 deletions

View File

@ -299,6 +299,7 @@ def start_SITL(binary,
'bash -c "gdb -x /tmp/x.gdb"')
elif gdb:
f = open("/tmp/x.gdb", "w")
f.write("set pagination off\n")
for breakpoint in breakpoints:
f.write("b %s\n" % (breakpoint,))
if disable_breakpoints: