-
Notifications
You must be signed in to change notification settings - Fork 53
Add tests for Keyed types #568
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 for Keyed types #568
Conversation
Signed-off-by: Miguel Company <[email protected]>
Signed-off-by: Miguel Company <[email protected]>
Signed-off-by: Miguel Company <[email protected]>
Signed-off-by: Miguel Company <[email protected]>
Signed-off-by: Miguel Company <[email protected]>
Signed-off-by: Miguel Company <[email protected]>
|
@fgallegosalido Would you mind rebasing this on top of #542 with:
|
|
@MiguelCompany I do not have permission to modify the branch |
|
@fgallegosalido The idea is that your branch (which you can modify) stems from the head of my branch, and contains additional commits with your work. This way, your PR will have the commits from both, and we could close my PR in favor of this one, and when this one is merged, we will both count as contributors. |
…RTPS and Connext RMWs Signed-off-by: Francisco Gallego Salido <[email protected]>
|
@MiguelCompany done. I've added tests for the |
|
CI with this repos file: |
fujitatomoya
left a comment
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 with green CI
| string_ends_with("${interface_file}" ".msg" is_message) | ||
| if(is_message AND interface_ns STREQUAL "msg") | ||
| string_ends_with("${interface_file}" ".idl" is_idl) | ||
| if(is_idl AND interface_ns STREQUAL "msg") |
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.
is the same change required for srv to avoid the duplication?
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.
I think this probably related to #549, although it doesn't seem to be necessary for now and can be backported later
Co-authored-by: Tomoya Fujita <[email protected]> Signed-off-by: Francisco Gallego Salido <[email protected]>
Co-authored-by: Tomoya Fujita <[email protected]> Signed-off-by: Francisco Gallego Salido <[email protected]>
|
@fujitatomoya changes applied. Let me know of anything else in order to be able to merge. |
|
New CI with this repos file: |
This adds support for the messages added by ros2/rcl_interfaces#173 to the
test_communicationpackage.Part of ros2/ros2#1538.