aboutgitcodebugslistschat
path: root/test/build
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-05-12 16:43:33 +1000
committerStefano Brivio <sbrivio@redhat.com>2022-05-19 15:24:15 +0200
commit21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e (patch)
treea8cb305aeed4f76cebbbfa98deba210a83447193 /test/build
parent4643b9b74c844cced27b3d04d3fcb69d51de8d28 (diff)
downloadpasst-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar
passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.gz
passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.bz2
passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.lz
passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.xz
passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.tar.zst
passt-21e9cf7b95434c74ed7cbcead4a9e5b19e168f6e.zip
tests: Simplify explicit checks for command success
A number of individual test cases use '*out' commands to check for success of specific commands they've issued. Now that the test harness is testing for success of all issued commands as a matter of course, we no longer need to do this. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'test/build')
-rw-r--r--test/build/static_checkers6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/build/static_checkers b/test/build/static_checkers
index d18dea8..34c8dff 100644
--- a/test/build/static_checkers
+++ b/test/build/static_checkers
@@ -14,9 +14,7 @@
htools clang-tidy cppcheck
test Run clang-tidy
-hout RET make clang-tidy; echo $?
-check [ __RET__ -eq 0 ]
+host make clang-tidy
test Run cppcheck
-hout RET make cppcheck; echo $?
-check [ __RET__ -eq 0 ]
+host make cppcheck