Skip to content

Commit 0be8aa0

Browse files
authored
rmw_fastrtps supports service event gid uniqueness test. (#2638)
Signed-off-by: Tomoya Fujita <[email protected]>
1 parent 41d3a27 commit 0be8aa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rclcpp/test/rclcpp/test_service_introspection.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ TEST_F(TestServiceIntrospection, service_introspection_nominal)
124124
ASSERT_THAT(
125125
client_gid_arr,
126126
testing::Eq(event_map[ServiceEventInfo::REQUEST_SENT]->info.client_gid));
127-
// TODO(@fujitatomoya): Remove this if statement once other rmw implementations support test.
128-
// Only rmw_connextdds can pass this test requirement for now.
127+
// TODO(@fujitatomoya): Remove this if statement once rmw implementations support test.
128+
// rmw_cyclonedds_cpp does not pass this test requirement for now.
129129
// See more details for https://github.com/ros2/rmw/issues/357
130-
if (std::string(rmw_get_implementation_identifier()).find("rmw_connextdds") == 0) {
130+
if (std::string(rmw_get_implementation_identifier()).find("rmw_cyclonedds_cpp") != 0) {
131131
ASSERT_THAT(
132132
client_gid_arr,
133133
testing::Eq(event_map[ServiceEventInfo::REQUEST_RECEIVED]->info.client_gid));

0 commit comments

Comments
 (0)