From 3e1e609d89fb1954bd497ae8021a3b6c0aad31f6 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Mon, 20 Jan 2025 17:24:33 -0500
Subject: Suppress additional clang-tidy warnings

Some when being run via meson, some that have been added in clang-tidy, and
some where I'm not sure what's changed.
---
 test/.clang-tidy     | 3 ++-
 test/cpp/.clang-tidy | 5 +++--
 2 files changed, 5 insertions(+), 3 deletions(-)

(limited to 'test')

diff --git a/test/.clang-tidy b/test/.clang-tidy
index f6fe1d6..ef4d61f 100644
--- a/test/.clang-tidy
+++ b/test/.clang-tidy
@@ -1,9 +1,10 @@
-# Copyright 2020-2022 David Robillard <d@drobilla.net>
+# Copyright 2020-2025 David Robillard <d@drobilla.net>
 # SPDX-License-Identifier: 0BSD OR ISC
 
 Checks: >
   -*-else-after-return,
   -bugprone-easily-swappable-parameters,
+  -bugprone-multi-level-implicit-pointer-conversion,
   -bugprone-suspicious-include,
   -cert-err33-c,
   -clang-diagnostic-unused-parameter,
diff --git a/test/cpp/.clang-tidy b/test/cpp/.clang-tidy
index 02d730c..1fe1f27 100644
--- a/test/cpp/.clang-tidy
+++ b/test/cpp/.clang-tidy
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 David Robillard <d@drobilla.net>
+# Copyright 2020-2025 David Robillard <d@drobilla.net>
 # SPDX-License-Identifier: 0BSD OR ISC
 
 Checks: >
@@ -17,10 +17,11 @@ Checks: >
   -cppcoreguidelines-pro-type-cstyle-cast,
   -cppcoreguidelines-pro-type-vararg,
   -hicpp-no-array-decay,
+  -hicpp-use-nullptr,
   -hicpp-vararg,
   -llvmlibc-callee-namespace,
   -modernize-use-nullptr,
   -modernize-use-using,
+  -performance-enum-size,
   -readability-implicit-bool-conversion,
 InheritParentConfig: true
-
-- 
cgit v1.2.1