-
Notifications
You must be signed in to change notification settings - Fork 315
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
use wait_for_service to make examples less flaky #110
Conversation
foreach(example_test ${example_tests}) | ||
set(example_tests_to_test ${example_tests}) | ||
# TODO(wjwwood): recombine with example_tests this when fastrtps supports wait_for_service. | ||
if("${rmw_implementation} " STREQUAL "rmw_fastrtps_cpp ") |
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.
Since we are using CMake 3.5 now please avoid the trailing spaces as well as the quotes and explicit variable expansion if the variable is know to exist:
if(rmw_implementation STREQUAL "rmw_fastrtps_cpp")
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.
Beside the comment +1 |
can be reenable when fastrtps supports wait_for_service
b7bc1a3
to
6a9ec4e
Compare
Connects to ros2/ros2#215