diff options
author | Aaron Merey <[email protected]> | 2025-01-30 20:16:34 -0500 |
---|---|---|
committer | Aaron Merey <[email protected]> | 2025-02-04 15:28:42 -0500 |
commit | a55408e461ccc75abce76fe639b27b8da0d7a27c (patch) | |
tree | 6558b795a9cf7a333766a2165df687d028bbe030 | |
parent | 3f0207631a21b01c775d7bdb0636a92e3a92ce52 (diff) |
tests/Makefile.am: Add --track-fds=yes to valgrind_cmdupstream/users/amerey/try-track-fds
`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]>
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 8f087798..625a014f 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 |