From 246fd1de5c073e60573abb014a787f012a241419 Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Thu, 30 Nov 2023 12:10:35 -0500 Subject: [PATCH] Make sure to disable a test_node test on RHEL. (#1124) This was previously disabled, but due to the recent work to simplify the tests the name of the test slightly changed. Fix that here, which should make us start skipping the test on RHEL again. Signed-off-by: Chris Lalancette --- rcl/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcl/test/CMakeLists.txt b/rcl/test/CMakeLists.txt index 1babe7c96..03fc0bc4d 100644 --- a/rcl/test/CMakeLists.txt +++ b/rcl/test/CMakeLists.txt @@ -234,7 +234,7 @@ function(test_target) if( "${DISTRIBUTION}" STREQUAL "\"centos\"" OR "${DISTRIBUTION}" STREQUAL "\"almalinux\"") - set(gtest_filter_env_var "GTEST_FILTER=-TestNodeFixture__*.test_rcl_node_init_with_internal_errors") + set(gtest_filter_env_var "GTEST_FILTER=-TestNodeFixture.test_rcl_node_init_with_internal_errors") else() set(gtest_filter_env_var "") endif()