diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 19:58:56 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 19:58:56 -0400 |
commit | aafaca51cfbdc66a6ff9af52121470f59b9559ac (patch) | |
tree | 3cf3d43fca5dba8cb9cdba733b258c9c9f57b319 /Makefile | |
parent | d5cf3acb7a45b7e46bf51dc6a66030d7bc986597 (diff) |
Check for leaks in `make test`
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ __build: $(MAKE) -C $(BUILD_DIR) test: __build - valgrind --exit-on-first-error=yes --error-exitcode=1 $(BUILD_DIR)/tests + valgrind --exit-on-first-error=yes --error-exitcode=1 --track-origins=yes \ + --leak-check=full --show-leak-kinds=all $(BUILD_DIR)/tests .PHONY: __build test |