summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2016-02-03 10:42:11 -0700
committerSimon Glass <sjg@chromium.org>2016-02-09 15:41:19 -0700
commitac99831b7d0f4e00c8dd32b604c2448260dd2776 (patch)
tree2df15f29c3cd823adc85f30d75d212a68f1e5bcb
parent986fe378172fa4bd5be1432ab2f8f7c2b1c43bae (diff)
downloadtalos-obmc-uboot-ac99831b7d0f4e00c8dd32b604c2448260dd2776.tar.gz
talos-obmc-uboot-ac99831b7d0f4e00c8dd32b604c2448260dd2776.zip
test/py: exit(1) if there are problems running py.test
The test/py/test.py wrapper script catches exceptions thrown when exec()ing py.test in order to print a helpful error message. However, the exception handling code squashes the exception and so the script exits with a non-zero exit code, leading callers to believe that it passed. Fix this. Signed-off-by: Stephen Warren <swarren@nvidia.com>
-rwxr-xr-xtest/py/test.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/py/test.py b/test/py/test.py
index 95671d4737..74e560a4d3 100755
--- a/test/py/test.py
+++ b/test/py/test.py
@@ -30,3 +30,4 @@ except:
print >>sys.stderr, '''
exec(py.test) failed; perhaps you are missing some dependencies?
See test/py/README.md for the list.'''
+ sys.exit(1)
OpenPOWER on IntegriCloud