aboutsummaryrefslogtreecommitdiff
path: root/tests/testlib.py
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2016-03-13 15:39:08 -0700
committerTim Newsome <tim@sifive.com>2016-05-23 12:12:10 -0700
commit64f7d791b703cc81a8f678de37f42185129b6456 (patch)
tree1944a4dd633e0a9e0d4f37be031b5578319a151c /tests/testlib.py
parent651ad043cee90de1c80d07b70a12c81d26b48c95 (diff)
downloadspike-64f7d791b703cc81a8f678de37f42185129b6456.zip
spike-64f7d791b703cc81a8f678de37f42185129b6456.tar.gz
spike-64f7d791b703cc81a8f678de37f42185129b6456.tar.bz2
Implement reading of CSRs.
Diffstat (limited to 'tests/testlib.py')
-rw-r--r--tests/testlib.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testlib.py b/tests/testlib.py
index 274ba6c..1f60ce6 100644
--- a/tests/testlib.py
+++ b/tests/testlib.py
@@ -34,6 +34,8 @@ class Gdb(object):
self.child = pexpect.spawn(path)
self.child.logfile = file("gdb.log", "w")
self.wait()
+ self.command("set width 0")
+ self.command("set height 0")
def wait(self):
"""Wait for prompt."""