From a9e94674299479588b742cefa3ebe36bb72cc83b Mon Sep 17 00:00:00 2001 From: Daan Date: Mon, 31 Mar 2025 11:00:05 -0700 Subject: [PATCH] make dynamic override test verbose --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 879aa668..66b24d89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -731,14 +731,14 @@ if (MI_BUILD_TESTS) target_include_directories(mimalloc-test-stress-dynamic PRIVATE include) if(WIN32) target_link_libraries(mimalloc-test-stress-dynamic PRIVATE mimalloc ${mi_libraries}) # mi_version - add_test(NAME test-stress-dynamic COMMAND ${CMAKE_COMMAND} -E env MIMALLOC_SHOW_STATS=1 $) + add_test(NAME test-stress-dynamic COMMAND ${CMAKE_COMMAND} -E env MIMALLOC_VERBOSE=1 $) else() if(APPLE) set(LD_PRELOAD "DYLD_INSERT_LIBRARIES") else() set(LD_PRELOAD "LD_PRELOAD") endif() - add_test(NAME test-stress-dynamic COMMAND ${CMAKE_COMMAND} -E env MIMALLOC_SHOW_STATS=1 ${LD_PRELOAD}=$ $) + add_test(NAME test-stress-dynamic COMMAND ${CMAKE_COMMAND} -E env MIMALLOC_VERBOSE=1 ${LD_PRELOAD}=$ $) endif() endif() endif()