Skip to content
Snippets Groups Projects
Commit ba619870 authored by fabinsch's avatar fabinsch Committed by Fabian Schramm
Browse files

unittest/urdf: check relative mesh loading

- cannot check for mesh path anymore
Now we have
~/pinocchio/models/./simple_humanoid_description/box.stl
instead of
~/pinocchio/models/simple_humanoid_description/box.stl
which is not a problem for loading the mesh.
- check if name of mesh is the same
parent 736f0bbe
No related branches found
No related tags found
1 merge request!1merge request for simplification
......@@ -95,8 +95,7 @@ BOOST_AUTO_TEST_CASE ( check_mesh_relative_path )
pinocchio::urdf::buildGeom(model1, filename, pinocchio::COLLISION, geomModel1, dir);
BOOST_CHECK_EQUAL(geomModel1.ngeoms, 2);
// check that both models point to the same mesh on the disk
BOOST_CHECK_EQUAL(geomModel0.geometryObjects[1].meshPath.compare(geomModel1.geometryObjects[1].meshPath), 0);
BOOST_CHECK_EQUAL(geomModel0.geometryObjects[1].name.compare(geomModel1.geometryObjects[1].name), 0);
}
BOOST_AUTO_TEST_CASE ( build_model_from_XML )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment