From a0258f351dcb3741e47b80671f165c0aa832113c Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Fri, 3 Jul 2020 15:43:08 +1000 Subject: [PATCH] autotest: disable gdb pagination --- Tools/autotest/pysim/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/autotest/pysim/util.py b/Tools/autotest/pysim/util.py index 332934a881..ff786e3c2f 100644 --- a/Tools/autotest/pysim/util.py +++ b/Tools/autotest/pysim/util.py @@ -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: