From: Tim Newsome Date: Fri, 10 Jun 2016 22:37:47 +0000 (-0700) Subject: Fix hwbp test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=440f54715a4a4335a371c61bc79079ead8c3c6fe;p=riscv-tests.git Fix hwbp test. --- diff --git a/debug/testlib.py b/debug/testlib.py index f8c8062..53e670e 100644 --- a/debug/testlib.py +++ b/debug/testlib.py @@ -166,5 +166,5 @@ class Gdb(object): def hbreak(self, location): output = self.command("hbreak %s" % location) assert "not defined" not in output - assert "Breakpoint" in output + assert "Hardware assisted breakpoint" in output return output