diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2022-08-18 16:13:50 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-08-20 19:07:12 +0200 |
commit | c8756034b7a86e76040957403f2b67ceb4d2e2a6 (patch) | |
tree | db06dddd7beb3eb2e41b85a996a730e75f85f8d4 /test/run | |
parent | a8598c7e70df60e1193993ac6b7c4c729518c7aa (diff) | |
download | passt-c8756034b7a86e76040957403f2b67ceb4d2e2a6.tar passt-c8756034b7a86e76040957403f2b67ceb4d2e2a6.tar.gz passt-c8756034b7a86e76040957403f2b67ceb4d2e2a6.tar.bz2 passt-c8756034b7a86e76040957403f2b67ceb4d2e2a6.tar.lz passt-c8756034b7a86e76040957403f2b67ceb4d2e2a6.tar.xz passt-c8756034b7a86e76040957403f2b67ceb4d2e2a6.tar.zst passt-c8756034b7a86e76040957403f2b67ceb4d2e2a6.zip |
test: Split cppcheck and clang-tidy tests into different files
Both clang-tidy and cppcheck linting are handled by the same test file,
test/build/static_checkers. The two linters are independent of each other
though, and each one takes quite a long time. Split them into separate
files to make it easier to control which are executed from the top level
test script.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'test/run')
-rwxr-xr-x | test/run | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -61,7 +61,8 @@ run() { setup build test build/all - test build/static_checkers + test build/cppcheck + test build/clang_tidy test distro/debian test distro/fedora test distro/opensuse |