We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 486acce commit 2eaefd2Copy full SHA for 2eaefd2
1 file changed
test_communication/CMakeLists.txt
@@ -203,6 +203,25 @@ if(BUILD_TESTING)
203
set(TEST_MESSAGE_TYPES "")
204
foreach(message_file ${message_files})
205
get_filename_component(message_type "${message_file}" NAME_WE)
206
+ set(message_has_keys FALSE)
207
+ if(
208
+ "${message_type}" STREQUAL "KeyedString" OR
209
+ "${message_type}" STREQUAL "ComplexNestedKey"
210
+ )
211
+ set(message_has_keys TRUE)
212
+ endif()
213
+
214
+ # TODO(MiguelCompany): Only fastrtps RMWs have support for keyed messages
215
216
+ message_has_keys AND
217
+ (
218
+ (NOT rmw_implementation1_is_fastrtps) OR
219
+ (NOT rmw_implementation2_is_fastrtps)
220
221
222
+ continue()
223
224
225
# TODO(dirk-thomas) WStrings published by FastRTPS can't be received
226
# correctly by Connext on macOS
227
if(
0 commit comments