From: Tim Newsome Date: Thu, 8 Dec 2016 02:21:11 +0000 (-0800) Subject: Nicely display compile failures. X-Git-Url: https://git.libre-soc.org/?p=riscv-tests.git;a=commitdiff_plain;h=5202a2bc1aa46f1c0c4a4f4a84daf8fc11bd15cf Nicely display compile failures. --- diff --git a/debug/testlib.py b/debug/testlib.py index c9b3f8d..6655e05 100644 --- a/debug/testlib.py +++ b/debug/testlib.py @@ -27,9 +27,17 @@ def compile(args, xlen=32): # pylint: disable=redefined-builtin cmd.append(found) else: cmd.append(arg) - cmd = " ".join(cmd) - result = os.system(cmd) - assert result == 0, "%r failed" % cmd + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, + stderr=subprocess.PIPE) + stdout, stderr = process.communicate() + if process.returncode: + print + header("Compile failed") + print "+", " ".join(cmd) + print stdout, + print stderr, + header("") + raise Exception("Compile failed!") def unused_port(): # http://stackoverflow.com/questions/2838244/get-open-tcp-port-in-python/2838309#2838309 @@ -175,7 +183,8 @@ class Openocd(object): except subprocess.CalledProcessError: output = "" matches = list(PORT_REGEX.finditer(output)) - matches = [m for m in matches if m.group('port') not in ('6666', '4444')] + matches = [m for m in matches + if m.group('port') not in ('6666', '4444')] if len(matches) > 1: print output raise Exception( @@ -345,10 +354,13 @@ def add_test_run_options(parser): help="Run only tests that are named here.") def header(title, dash='-'): - dashes = dash * (36 - len(title)) - before = dashes[:len(dashes)/2] - after = dashes[len(dashes)/2:] - print "%s[ %s ]%s" % (before, title, after) + if title: + dashes = dash * (36 - len(title)) + before = dashes[:len(dashes)/2] + after = dashes[len(dashes)/2:] + print "%s[ %s ]%s" % (before, title, after) + else: + print dash * 40 class BaseTest(object): compiled = {}