aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2017-08-11 14:56:36 -0700
committerTim Newsome <tim@sifive.com>2017-08-11 14:56:36 -0700
commit72ce7880805bdafaccb89f935a8ea6dd7e2acc61 (patch)
tree32334d9de3da03f62ae4cfb8cbc63fde2048fc4c
parent3ada0967edb2e3d91cba0328dd6b5d0ddb5e61c5 (diff)
downloadriscv-tests-72ce7880805bdafaccb89f935a8ea6dd7e2acc61.zip
riscv-tests-72ce7880805bdafaccb89f935a8ea6dd7e2acc61.tar.gz
riscv-tests-72ce7880805bdafaccb89f935a8ea6dd7e2acc61.tar.bz2
Show the OpenOCD log in all(?) failure cases.
-rw-r--r--debug/testlib.py52
1 files changed, 29 insertions, 23 deletions
diff --git a/debug/testlib.py b/debug/testlib.py
index 499f60d..9a45cd0 100644
--- a/debug/testlib.py
+++ b/debug/testlib.py
@@ -202,29 +202,35 @@ class Openocd(object):
self.process = subprocess.Popen(cmd, stdin=subprocess.PIPE,
stdout=logfile, stderr=logfile)
- # Wait for OpenOCD to have made it through riscv_examine(). When using
- # OpenOCD to communicate with a simulator this may take a long time,
- # and gdb will time out when trying to connect if we attempt too early.
- start = time.time()
- messaged = False
- while True:
- log = open(Openocd.logname).read()
- m = re.search(r"Listening on port (\d+) for gdb connections", log)
- if m:
- self.port = int(m.group(1))
- break
-
- if not self.process.poll() is None:
- header("OpenOCD log")
- sys.stdout.write(log)
- raise Exception(
- "OpenOCD exited before completing riscv_examine()")
- if not messaged and time.time() - start > 1:
- messaged = True
- print "Waiting for OpenOCD to start..."
- if time.time() - start > 60:
- raise Exception("ERROR: Timed out waiting for OpenOCD to "
- "listen for gdb")
+ try:
+ # Wait for OpenOCD to have made it through riscv_examine(). When
+ # using OpenOCD to communicate with a simulator this may take a
+ # long time, and gdb will time out when trying to connect if we
+ # attempt too early.
+ start = time.time()
+ messaged = False
+ while True:
+ log = open(Openocd.logname).read()
+ m = re.search(r"Listening on port (\d+) for gdb connections",
+ log)
+ if m:
+ self.port = int(m.group(1))
+ break
+
+ if not self.process.poll() is None:
+ raise Exception(
+ "OpenOCD exited before completing riscv_examine()")
+ if not messaged and time.time() - start > 1:
+ messaged = True
+ print "Waiting for OpenOCD to start..."
+ if time.time() - start > 60:
+ raise Exception("ERROR: Timed out waiting for OpenOCD to "
+ "listen for gdb")
+
+ except Exception:
+ header("OpenOCD log")
+ sys.stdout.write(log)
+ raise
def __del__(self):
try: