From cdd83f8e32266c1046922f268ad10f6ca89c5a9c Mon Sep 17 00:00:00 2001 From: Jacob Perron Date: Fri, 29 May 2020 17:26:02 -0700 Subject: [PATCH] Use parentheses Signed-off-by: Jacob Perron --- test_security/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_security/CMakeLists.txt b/test_security/CMakeLists.txt index b9159799..a3c42ce8 100644 --- a/test_security/CMakeLists.txt +++ b/test_security/CMakeLists.txt @@ -271,8 +271,8 @@ if(BUILD_TESTING) # TODO(mikaelarguedas) only Connext and FastRTPS support DDS-Security for now # TODO(jacobperron) Disable Connext on Windows until we fix issue with CI if( - rmw_implementation STREQUAL "rmw_connext_cpp" AND NOT WIN32 OR - rmw_implementation STREQUAL "rmw_connext_dynamic_cpp" AND NOT WIN32 OR + (rmw_implementation STREQUAL "rmw_connext_cpp" AND NOT WIN32) OR + (rmw_implementation STREQUAL "rmw_connext_dynamic_cpp" AND NOT WIN32) OR rmw_implementation STREQUAL "rmw_fastrtps_cpp" OR rmw_implementation STREQUAL "rmw_fastrtps_dynamic_cpp" )