-
Notifications
You must be signed in to change notification settings - Fork 49
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
Fix generator expression #374
Conversation
Signed-off-by: Michael Carroll <[email protected]>
Codecov Report
@@ Coverage Diff @@
## gz-msgs10 #374 +/- ##
=============================================
+ Coverage 97.21% 97.25% +0.03%
=============================================
Files 27 27
Lines 1150 1165 +15
=============================================
+ Hits 1118 1133 +15
Misses 32 32
|
Signed-off-by: Michael Carroll <[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! I'll open an issue for the GZ_MSGS_GEN_EXECUTABLE
regression. Also, there's one debug print that needs to be removed.
core/src/DynamicFactory.cc
Outdated
@@ -79,6 +79,8 @@ void DynamicFactory::LoadDescriptors(const std::string &_paths) | |||
if (_paths.empty()) | |||
return; | |||
|
|||
std::cout << "DynamicFactory::LoadDescriptors(" << _paths << "\n"; |
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.
Remove
Oh, and this should target |
Signed-off-by: Michael Carroll <[email protected]>
Signed-off-by: Michael Carroll <[email protected]>
This fixes one of the two test failures in gazebosim/gz-transport#434. |
Signed-off-by: Michael Carroll <[email protected]>
I'm going to make the ABI checker not required for now. I think it's failing because it's building on Focal. |
Fixes the issue found here where there isn't an
exe
extension: gazebosim/gz-sim#2087 (comment)