From 853156e10e3750def92e5960bc3ed8edf0fea3b0 Mon Sep 17 00:00:00 2001 From: Robby Cochran Date: Tue, 8 Sep 2026 17:04:22 -0700 Subject: [PATCH] fix: provide container plugin path to memcheck tests --- collector/test/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/collector/test/CMakeLists.txt b/collector/test/CMakeLists.txt index 956530b947..1ed6da839e 100644 --- a/collector/test/CMakeLists.txt +++ b/collector/test/CMakeLists.txt @@ -31,6 +31,7 @@ foreach(test_file ${TEST_SRC_FILES}) endif() add_test(NAME memcheck_${test_name} COMMAND valgrind -q --leak-check=full --trace-children=yes $) + set_property(TEST memcheck_${test_name} APPEND PROPERTY ENVIRONMENT "ROX_COLLECTOR_CONTAINER_PLUGIN_PATH=${CMAKE_BINARY_DIR}/collector/collector-container-plugin.so") endif() endforeach()