From: Tim Newsome Date: Mon, 9 May 2016 16:41:01 +0000 (-0700) Subject: Force gdb to not print entry values. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b176c4e961c6eb376051a3db11078637f6bbffa;p=riscv-isa-sim.git Force gdb to not print entry values. All of a sudden gdb decided to start printing them, which messed up the breakpoint test. It would only print them in the test, not if I manually ran the same commands. I'm sure it's my fault somehow, but this should keep things consistent in the future. --- diff --git a/tests/testlib.py b/tests/testlib.py index 3b439b1..3cba8c7 100644 --- a/tests/testlib.py +++ b/tests/testlib.py @@ -71,6 +71,8 @@ class Gdb(object): self.wait() self.command("set width 0") self.command("set height 0") + # Force consistency. + self.command("set print entry-values no") def wait(self): """Wait for prompt."""