From 4d0e162d2db0531624edee497613c7ecb1ef212d Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Thu, 17 Sep 2015 14:50:29 -0700 Subject: [PATCH] Expand check_integration_prof testing. Run integration tests with MALLOC_CONF="prof:true,prof_active:false" in addition to MALLOC_CONF="prof:true". --- Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.in b/Makefile.in index 01285afb..1ac6f292 100644 --- a/Makefile.in +++ b/Makefile.in @@ -353,6 +353,7 @@ check_unit: tests_unit check_unit_dir check_integration_prof: tests_integration check_integration_dir ifeq ($(enable_prof), 1) $(MALLOC_CONF)="prof:true" $(SHELL) $(objroot)test/test.sh $(TESTS_INTEGRATION:$(srcroot)%.c=$(objroot)%) + $(MALLOC_CONF)="prof:true,prof_active:false" $(SHELL) $(objroot)test/test.sh $(TESTS_INTEGRATION:$(srcroot)%.c=$(objroot)%) endif check_integration: tests_integration check_integration_dir $(SHELL) $(objroot)test/test.sh $(TESTS_INTEGRATION:$(srcroot)%.c=$(objroot)%)