diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2025-09-05 16:43:14 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2025-09-05 13:00:15 +0200 |
commit | a58e60e83e31bd5c32b965eb9adabe99e781cb5d (patch) | |
tree | 407e3d979425c0fb9a4ef352def3b68d384da8c5 | |
parent | a283ef47b9b3d525e54d1679f0bbc68ed5498e27 (diff) | |
download | passt-a58e60e83e31bd5c32b965eb9adabe99e781cb5d.tar passt-a58e60e83e31bd5c32b965eb9adabe99e781cb5d.tar.gz passt-a58e60e83e31bd5c32b965eb9adabe99e781cb5d.tar.bz2 passt-a58e60e83e31bd5c32b965eb9adabe99e781cb5d.tar.lz passt-a58e60e83e31bd5c32b965eb9adabe99e781cb5d.tar.xz passt-a58e60e83e31bd5c32b965eb9adabe99e781cb5d.tar.zst passt-a58e60e83e31bd5c32b965eb9adabe99e781cb5d.zip |
test: Run static checkers as exeter tests
Move the static checkers from the current DSL to exeter.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | test/build/clang_tidy | 17 | ||||
-rw-r--r-- | test/build/cppcheck | 17 | ||||
-rwxr-xr-x | test/build/static_checkers.sh | 26 | ||||
-rwxr-xr-x | test/run | 3 |
4 files changed, 27 insertions, 36 deletions
diff --git a/test/build/clang_tidy b/test/build/clang_tidy deleted file mode 100644 index 40573bf..0000000 --- a/test/build/clang_tidy +++ /dev/null @@ -1,17 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-or-later -# -# PASST - Plug A Simple Socket Transport -# for qemu/UNIX domain socket mode -# -# PASTA - Pack A Subtle Tap Abstraction -# for network namespace/tap device mode -# -# test/build/clang_tidy - Run source through clang-tidy(1) linter -# -# Copyright (c) 2021 Red Hat GmbH -# Author: Stefano Brivio <sbrivio@redhat.com> - -htools clang-tidy - -test Run clang-tidy -host make clang-tidy diff --git a/test/build/cppcheck b/test/build/cppcheck deleted file mode 100644 index 0e1dbce..0000000 --- a/test/build/cppcheck +++ /dev/null @@ -1,17 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-or-later -# -# PASST - Plug A Simple Socket Transport -# for qemu/UNIX domain socket mode -# -# PASTA - Pack A Subtle Tap Abstraction -# for network namespace/tap device mode -# -# test/build/cppcheck - Run source through cppcheck(1) linter -# -# Copyright (c) 2021 Red Hat GmbH -# Author: Stefano Brivio <sbrivio@redhat.com> - -htools cppcheck - -test Run cppcheck -host make cppcheck diff --git a/test/build/static_checkers.sh b/test/build/static_checkers.sh new file mode 100755 index 0000000..42806e7 --- /dev/null +++ b/test/build/static_checkers.sh @@ -0,0 +1,26 @@ +#! /bin/sh +# +# SPDX-License-Identifier: GPL-2.0-or-later +# +# PASST - Plug A Simple Socket Transport +# for qemu/UNIX domain socket mode +# +# PASTA - Pack A Subtle Tap Abstraction +# for network namespace/tap device mode +# +# test/build/static_checkers.sh - Run static checkers +# +# Copyright Red Hat +# Author: David Gibson <david@gibson.dropbear.id.au> + +. $(dirname $0)/../exeter/sh/exeter.sh + +exeter_register cppcheck make -C .. cppcheck +exeter_set_description cppcheck "passt sources pass cppcheck" + +exeter_register clang_tidy make -C .. clang-tidy +exeter_set_description clang_tidy "passt sources pass clang-tidy" + +exeter_main "$@" + + @@ -69,11 +69,10 @@ run() { [ ${CI} -eq 1 ] && video_start ci exeter smoke/smoke.sh + exeter build/static_checkers.sh setup build test build/all - test build/cppcheck - test build/clang_tidy teardown build setup pasta |