aboutsummaryrefslogtreecommitdiff
path: root/debug/testlib.py
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2016-06-10 15:37:47 -0700
committerTim Newsome <tim@sifive.com>2016-07-18 18:51:54 -0700
commit440f54715a4a4335a371c61bc79079ead8c3c6fe (patch)
tree74c2620c7334065cdbb6e10bbbb2ee1d05818b03 /debug/testlib.py
parent7ce8ad62d7f1a1e183665418151d7c655c29642a (diff)
downloadriscv-tests-440f54715a4a4335a371c61bc79079ead8c3c6fe.zip
riscv-tests-440f54715a4a4335a371c61bc79079ead8c3c6fe.tar.gz
riscv-tests-440f54715a4a4335a371c61bc79079ead8c3c6fe.tar.bz2
Fix hwbp test.
Diffstat (limited to 'debug/testlib.py')
-rw-r--r--debug/testlib.py2
1 files changed, 1 insertions, 1 deletions
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