From 8b176c4e961c6eb376051a3db11078637f6bbffa Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Mon, 9 May 2016 09:41:01 -0700 Subject: [PATCH] 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. --- tests/testlib.py | 2 ++ 1 file changed, 2 insertions(+) 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.""" -- 2.30.2