From 7f25ea2102a178c2b59230c36c962124b55505ba Mon Sep 17 00:00:00 2001 From: Nakidai Date: Mon, 14 Apr 2025 23:36:55 +0300 Subject: Set ASAN_OPTIONS=detect_leaks=0 for tests I know that there're memory leaks, but I don't care about them. Though some other feautres from asan may be helpful --- examples/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/Makefile b/examples/Makefile index 6bb825f..ee0946a 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -5,6 +5,8 @@ TESTS += gcd TESTS += mlc TESTS += num +export ASAN_OPTIONS=detect_leaks=0 + all: ${TESTS} .PHONY: ${TESTS} -- cgit 1.4.1