Skip to content
Snippets Groups Projects
Commit 2a2238fc authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

normalized quaternion and commented test filter

parent 90125770
No related branches found
No related tags found
No related merge requests found
...@@ -246,7 +246,7 @@ TEST(Problem, StateBlocks) ...@@ -246,7 +246,7 @@ TEST(Problem, StateBlocks)
std::string wolf_root = _WOLF_ROOT_DIR; std::string wolf_root = _WOLF_ROOT_DIR;
ProblemPtr P = Problem::create("PO", 3); ProblemPtr P = Problem::create("PO", 3);
Eigen::Vector7d xs3d; Eigen::Vector7d xs3d; xs3d << 1,2,3,0,0,0,1; // required normalized quaternion (solver manager checks this)
Eigen::Vector3d xs2d; Eigen::Vector3d xs2d;
// 2 state blocks, fixed // 2 state blocks, fixed
...@@ -564,6 +564,6 @@ TEST(Problem, getState) ...@@ -564,6 +564,6 @@ TEST(Problem, getState)
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
testing::InitGoogleTest(&argc, argv); testing::InitGoogleTest(&argc, argv);
::testing::GTEST_FLAG(filter) = "Problem.getState"; //::testing::GTEST_FLAG(filter) = "Problem.getState";
return RUN_ALL_TESTS(); return RUN_ALL_TESTS();
} }
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