From 318df95914d5db6a25916972180ab4faee992d19 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Tue, 4 May 2021 09:21:10 +0200 Subject: [PATCH] build: Add "test-asan" make target for convenience --- Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.am b/Makefile.am index 992f95f51..336125516 100644 --- a/Makefile.am +++ b/Makefile.am @@ -48,6 +48,10 @@ bootstrap: all test: cd tests && $(MAKE) $(AM_MAKEFLAGS) check +.PHONY: test-asan +test-asan: + cd tests && $(MAKE) $(AM_MAKEFLAGS) check TEST_CFLAGS="$(TEST_CFLAGS) -g3 -fsanitize=address -fno-omit-frame-pointer" + #if ENABLE_COVERAGE .PHONY: coverage coverage-report coverage: -- 2.47.2