From a6a9c7b7aacbb33b0d8a0b9ff7b6382352e3ef52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6tz=20G=C3=B6risch?= <47734341+GoetzGoerisch@users.noreply.github.com> Date: Sun, 21 Jan 2024 15:34:14 +0000 Subject: [PATCH] fix(test): Removes Valgrind RHEL 7.1 compatibility flag --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 0878cec6a25..6e6e027cec5 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -94,7 +94,7 @@ endif() # Unit Test Definition Macro # For now we need to disable the libc freeres. See https://github.com/open62541/open62541/pull/1003#issuecomment-315045143 # This also requires to disable the phtread cache with no-nptl-pthread-stackcache -set(VALGRIND_FLAGS --quiet --trace-children=yes --leak-check=full --run-libc-freeres=no --sim-hints=no-nptl-pthread-stackcache --track-fds=yes) +set(VALGRIND_FLAGS --quiet --trace-children=yes --leak-check=full --run-libc-freeres=yes --sim-hints=no-nptl-pthread-stackcache --track-fds=yes) macro(add_test_valgrind TEST_NAME) if(UA_ENABLE_UNIT_TESTS_MEMCHECK) if(MSVC)