-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests bad type_support implementation #152
Conversation
Signed-off-by: lobotuerk <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM pending green CI
Thanks for the extra lines @Lobotuerk !
@@ -150,6 +150,14 @@ TEST_F(CLASSNAME(TestSubscription, RMW_IMPLEMENTATION), create_with_bad_argument | |||
EXPECT_EQ(nullptr, sub); | |||
rmw_reset_error(); | |||
|
|||
rosidl_message_type_support_t * non_implementation_ts = const_cast<rosidl_message_type_support_t *>(ts); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Lobotuerk nit:
rosidl_message_type_support_t * non_implementation_ts = const_cast<rosidl_message_type_support_t *>(ts); | |
rosidl_message_type_support_t * non_const_ts = const_cast<rosidl_message_type_support_t *>(ts); |
Same elsewhere.
Signed-off-by: lobotuerk <[email protected]>
Signed-off-by: lobotuerk <[email protected]>
Signed-off-by: lobotuerk <[email protected]>
Signed-off-by: Michel Hidalgo <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
CI again after ros2/rmw_fastrtps#458: |
Alright, all green ! Thanks @Lobotuerk ! |
Signed-off-by: lobotuerk <[email protected]> Co-authored-by: Michel Hidalgo <[email protected]>
Signed-off-by: lobotuerk <[email protected]> Co-authored-by: Michel Hidalgo <[email protected]>
This tests should add 10 lines of coverage to
rmw_fastrtps_cpp
Signed-off-by: lobotuerk [email protected]