summaryrefslogtreecommitdiff
path: root/tests/test-fcntl.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-fcntl.c')
-rw-r--r--tests/test-fcntl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test-fcntl.c b/tests/test-fcntl.c
index 4206de991a..c2b7377b59 100644
--- a/tests/test-fcntl.c
+++ b/tests/test-fcntl.c
@@ -44,6 +44,14 @@ SIGNATURE_CHECK (fcntl, int, (int, int, ...));
#include "binary-io.h"
#include "macros.h"
+/* Tell GCC not to warn about the specific edge cases tested here. */
+#if __GNUC__ >= 10
+# pragma GCC diagnostic ignored "-Wanalyzer-fd-leak"
+#endif
+#if __GNUC__ >= 13
+# pragma GCC diagnostic ignored "-Wanalyzer-va-arg-type-mismatch"
+#endif
+
#if !O_BINARY
# define set_binary_mode(f,m) zero ()
static int zero (void) { return 0; }