Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
test-hpp
Commits
2bf2cded
Commit
2bf2cded
authored
Mar 29, 2014
by
Florent Lamiraux
Browse files
Update tests to latest modifications in hpp-model.
- the config size is now different from the number of degrees of freedom.
parent
a8d4b814
Changes
3
Hide whitespace changes
Inline
Side-by-side
tests/body-positions-mesh.cc.in
View file @
2bf2cded
...
...
@@ -68,7 +68,8 @@ BOOST_AUTO_TEST_CASE (body_positions_mesh)
fileConfig.close ();
// Load hrp2
hpp::model::HumanoidRobotPtr_t humanoidRobot;
hpp::model::urdf::loadRobotModel (humanoidRobot, "hrp2_14", "", "", "");
hpp::model::urdf::loadRobotModel
(humanoidRobot, "freeflyer", "hrp2_14", "", "");
configSize = humanoidRobot->configSize ();
// Check size of config
if (dofs.size () != configSize) {
...
...
tests/interbody-distances-capsule.cc.in
View file @
2bf2cded
...
...
@@ -132,9 +132,9 @@ BOOST_AUTO_TEST_CASE (interbody_distances_capsule)
fileConfig.close ();
// Load hrp2
hpp::model::HumanoidRobotPtr_t humanoidRobot;
hpp::model::urdf::loadRobotModel
(humanoidRobot, "hrp2_14", "_capsule",
"_capsule", "");
configSize = humanoidRobot->
numberDof
();
hpp::model::urdf::loadRobotModel
(humanoidRobot, "freeflyer", "hrp2_14",
"_capsule", "
_capsule
");
configSize = humanoidRobot->
configSize
();
// Check size of config
if (dofs.size () != configSize) {
std::ostringstream error;
...
...
tests/interbody-distances-mesh.cc.in
View file @
2bf2cded
...
...
@@ -132,8 +132,9 @@ BOOST_AUTO_TEST_CASE (interbody_distances_mesh)
fileConfig.close ();
// Load hrp2
hpp::model::HumanoidRobotPtr_t humanoidRobot;
hpp::model::urdf::loadRobotModel (humanoidRobot, "hrp2_14", "", "", "");
configSize = humanoidRobot->numberDof ();
hpp::model::urdf::loadRobotModel
(humanoidRobot, "freeflyer", "hrp2_14", "", "");
configSize = humanoidRobot->configSize ();
// Check size of config
if (dofs.size () != configSize) {
std::ostringstream error;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment