forked from ros2/rcl
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Qos test #4
Merged
Merged
Qos test #4
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
2be4d6b
initial qos interface changes
mm318 3855c9c
add creation of event waitable type
mm318 393cff2
add event APIs to wait_set
mm318 2b669dc
Add rcl_take_event
ross-desmond a524654
fix some ros2 build issues
mm318 b256ec2
add rcl event type enum
mm318 20553d3
fix lint errors
mm318 960bcd5
apply uncrustify
mm318 bda0992
add section about DCO to CONTRIBUTING.md
dirk-thomas 03dec21
Refactor graph API docs (#401)
jacobperron 1ccce36
fix segfault when initializing rmw_event_t
mm318 682c70c
Use new qos policy defs
1e40ba7
fix invalid memory access
mm318 5957c97
add missing code that handles rmw_events
mm318 23cd7a1
revert changes to client and services
mm318 28b39cf
update API calls related to rmw_event_t
mm318 ccac717
Merge remote-tracking branch 'origin/master' into qos
mm318 9a2dd2b
fix failing tests in test_events (#2)
mm318 31f7c42
synchronize the qos-test branch with the qos_reviewed branch so that …
mm318 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
shouldn't you be able to do auto teardown using the class fixture?
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.
For the liveliness test, I can only tear down the subscriber, so I couldn't make the auto
TearDown()
tear down absolutely everything.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.
Hmm, I guess it's already doing a manual setup, so it's not out of pattern.
You could perhaps on the fixture set a
this->doTearDownPublisher
and check that on the TearDown method - might keep more logic contained on the fixture such that you can't accidentally forget to clean upNot blocking approval on this, just picking through it