diff options
author | David Robillard <d@drobilla.net> | 2024-09-28 11:12:12 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-09-28 11:12:12 -0400 |
commit | 19bd977e943bf37c2c24ee0116486fa9b7611f70 (patch) | |
tree | 1c6c6b41cd83698a65b5017a01f10143e70b67c9 | |
parent | 0d200a53e73d5c92447e19ba2a00d8e7bf36fd03 (diff) | |
download | zix-19bd977e943bf37c2c24ee0116486fa9b7611f70.tar.gz zix-19bd977e943bf37c2c24ee0116486fa9b7611f70.tar.bz2 zix-19bd977e943bf37c2c24ee0116486fa9b7611f70.zip |
Fix cppcheck test on older systems
This fixes the test on the lv2plugin/debian-x64 image in particular, which is
based on Debian 11 with cppcheck 2.3.
-rw-r--r-- | test/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build index 96fe455..360d61d 100644 --- a/test/meson.build +++ b/test/meson.build @@ -44,12 +44,12 @@ if not meson.is_subproject() and get_option('lint') 'cppcheck', cppcheck, args: [ - '--check-level=exhaustive', '--enable=warning,style,performance,portability', '--error-exitcode=1', '--project=' + compdb_path, '--suppress=constParameterCallback', '--suppress=constParameterPointer', + '--suppress=normalCheckLevelMaxBranches', '--suppress=unreadVariable', '-q', ], |