Code Review
/
vpp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
4cb2357
)
make test: properly propagate exit status
31/6331/1
author
Klement Sekera
<
[email protected]
>
Fri, 24 Mar 2017 03:29:06 +0000
(
04:29
+0100)
committer
Ole Trøan
<
[email protected]
>
Fri, 21 Apr 2017 11:22:34 +0000
(11:22 +0000)
Change-Id: Ie9f48a0d5e0a9cd08eb8f07d49149eee40f04131
Signed-off-by: Klement Sekera <
[email protected]
>
(cherry picked from commit
0c8ad446db72078a2255329c2cfaced517829c78
)
test/run_tests.py
patch
|
blob
|
history
diff --git
a/test/run_tests.py
b/test/run_tests.py
index
39b0936
..
1b9c677
100644
(file)
--- a/
test/run_tests.py
+++ b/
test/run_tests.py
@@
-58,4
+58,5
@@
if __name__ == '__main__':
for d in args.dir:
print("Adding tests from directory tree %s" % d)
add_from_dir(suite, d)
- VppTestRunner(verbosity=verbose, failfast=failfast).run(suite)
+ sys.exit(not VppTestRunner(verbosity=verbose,
+ failfast=failfast).run(suite).wasSuccessful())