From 1d7021130de92e87676dc10a6c202d3eb037cb3c Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 4 Jul 2026 09:15:32 +0100 Subject: [PATCH] Set ASAN_OPTIONS in regress Makefile. --- regress/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/regress/Makefile b/regress/Makefile index 5f8d50c8f..ff58eef40 100644 --- a/regress/Makefile +++ b/regress/Makefile @@ -8,6 +8,7 @@ all: for test in $(TESTS); do \ printf '%-40s ' "$$test"; \ start=$$(date +%s); \ + ASAN_OPTIONS="abort_on_error=1:detect_leaks=0:$$ASAN_OPTIONS"; \ if env -i ASAN_OPTIONS="$$ASAN_OPTIONS" sh "$$test" >/dev/null 2>&1; then \ end=$$(date +%s); \ echo "PASS ($$((end - start))s)"; \