-
Notifications
You must be signed in to change notification settings - Fork 132
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 in some tests for the strToDouble conversion. #109
Conversation
Note that this only tests that some simple cases do the correct thing. We can't reliably check the locale fixing code because we can't depend on any particular locales being installed on test machines. Signed-off-by: Chris Lalancette <[email protected]>
urdf_parser/test/CMakeLists.txt
Outdated
@@ -20,7 +20,9 @@ include_directories(${GTEST_INCLUDE_DIRS}) | |||
|
|||
# unit test to fix geometry problems | |||
set(tests | |||
urdf_unit_test.cpp) | |||
urdf_unit_test.cpp | |||
urdf_double_convert.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.
alphabetize the list please
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.
Whoops, sorry. Done now.
In 0e14f00 I made a test commit that will use the |
Signed-off-by: Chris Lalancette <[email protected]>
CI looks good on my test branch |
I'm actually going to close this out and re-open to re-trigger Travis now that ros/urdfdom_headers#42 has been merged. |
The "push" one is failing, but that's because it ran before the urdfdom_headers PR was in. Since the other Travis CI looks good, I'm going to merge this. Thanks! |
Note that this only tests that some simple cases do the correct
thing. We can't reliably check the locale fixing
code because we can't depend on any particular locales being
installed on test machines.
This depends on ros/urdfdom_headers#42, so should not be merged until that one is.
Signed-off-by: Chris Lalancette [email protected]