summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAaron Merey <[email protected]>2025-01-30 20:16:34 -0500
committerAaron Merey <[email protected]>2025-02-07 17:26:04 -0500
commit9127ef13eb51cc57f848cb185ee1e56a55c6dad2 (patch)
tree20153bea30d51334b8500ab1c4dfa1a46f4ec417 /tests
parentdda201db20d039df51d52c3c4478fc3318e2c546 (diff)
tests/Makefile.am: Add --track-fds=yes to valgrind_cmd
`valgrind --track-fds=yes` will report errors for file descriptor leaks and attempts at closing invalid file descriptors. Signed-off-by: Aaron Merey <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 8f087798..ec6cc901 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -692,7 +692,7 @@ EXTRA_DIST = run-arextract.sh run-arsymtest.sh run-ar.sh \
if USE_VALGRIND
-valgrind_cmd=valgrind -q --leak-check=full --error-exitcode=1
+valgrind_cmd=valgrind -q --leak-check=full --error-exitcode=1 --track-fds=yes
endif