Commit c34a1236 authored by Alex Willmer's avatar Alex Willmer Committed by David Wilson

tests: Rely on unittest2 to print failure messages

parent 2c05958e
...@@ -13,10 +13,6 @@ while time.time() < deadline and proc.poll() is None: ...@@ -13,10 +13,6 @@ while time.time() < deadline and proc.poll() is None:
time.sleep(1.0) time.sleep(1.0)
if proc.poll() is not None: if proc.poll() is not None:
if proc.returncode:
print
print >> sys.stderr, "Command failed:", sys.argv[2:]
print
sys.exit(proc.returncode) sys.exit(proc.returncode)
proc.terminate() proc.terminate()
print print
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment