aboutsummaryrefslogtreecommitdiff
path: root/debug/testlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'debug/testlib.py')
-rw-r--r--debug/testlib.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/debug/testlib.py b/debug/testlib.py
index b19eafc..90702bf 100644
--- a/debug/testlib.py
+++ b/debug/testlib.py
@@ -836,8 +836,9 @@ class ExamineTarget(GdbTest):
raise TestFailed("Couldn't determine XLEN from $misa (0x%x)" %
self.hart.misa)
- if (misa_xlen != hart.xlen):
- raise TestFailed("MISA reported XLEN of %d but we were expecting XLEN of %d\n" % (misa_xlen, hart.xlen))
+ if misa_xlen != hart.xlen:
+ raise TestFailed("MISA reported XLEN of %d but we were "\
+ "expecting XLEN of %d\n" % (misa_xlen, hart.xlen))
txt += ("%d" % misa_xlen)