From 5aa169cce1c0ae57f44e9a7f55d10113ab2da238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=C3=ADaz=20Qu=C3=ADlez?= <33602217+Tempate@users.noreply.github.com> Date: Tue, 9 Jan 2024 07:28:54 +0100 Subject: [PATCH] Fix DNS filter in CMakeLists file (#4211) Signed-off-by: tempate --- test/unittest/dds/participant/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unittest/dds/participant/CMakeLists.txt b/test/unittest/dds/participant/CMakeLists.txt index 516406c6d0f..927239c6b51 100644 --- a/test/unittest/dds/participant/CMakeLists.txt +++ b/test/unittest/dds/participant/CMakeLists.txt @@ -47,7 +47,7 @@ target_link_libraries(ParticipantTests fastrtps fastcdr foonathan_memory ${CMAKE_DL_LIBS}) if(EPROSIMA_TEST_DNS_NOT_SET_UP) - set(dns_filter "ParticipantTests.SimpleParticipantRemoteServerListConfigurationDNS") + set(dns_filter "-ParticipantTests.SimpleParticipantRemoteServerListConfigurationDNS") endif() gtest_discover_tests(ParticipantTests TEST_FILTER ${dns_filter})