Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Commits
39f575ba
Commit
39f575ba
authored
6 years ago
by
Joaquim Casals Buñuel
Browse files
Options
Downloads
Patches
Plain Diff
WIP fixing gtest_problem
parent
0561cadf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#3132
failed
6 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/CMakeLists.txt
+2
-3
2 additions, 3 deletions
test/CMakeLists.txt
test/gtest_problem.cpp
+1
-1
1 addition, 1 deletion
test/gtest_problem.cpp
with
3 additions
and
4 deletions
test/CMakeLists.txt
+
2
−
3
View file @
39f575ba
...
@@ -61,7 +61,6 @@ wolf_add_gtest(gtest_eigen_predicates gtest_eigen_predicates.cpp)
...
@@ -61,7 +61,6 @@ wolf_add_gtest(gtest_eigen_predicates gtest_eigen_predicates.cpp)
target_link_libraries
(
gtest_eigen_predicates
${
PROJECT_NAME
}
)
target_link_libraries
(
gtest_eigen_predicates
${
PROJECT_NAME
}
)
# Node Emplace test
# Node Emplace test
# TODO: TO BE FIXED
wolf_add_gtest
(
gtest_emplace gtest_emplace.cpp
)
wolf_add_gtest
(
gtest_emplace gtest_emplace.cpp
)
target_link_libraries
(
gtest_emplace
${
PROJECT_NAME
}
)
target_link_libraries
(
gtest_emplace
${
PROJECT_NAME
}
)
...
@@ -95,8 +94,8 @@ target_link_libraries(gtest_parser_yaml ${PROJECT_NAME})
...
@@ -95,8 +94,8 @@ target_link_libraries(gtest_parser_yaml ${PROJECT_NAME})
# Problem class test
# Problem class test
# TODO: TO BE FIXED
# TODO: TO BE FIXED
#
wolf_add_gtest(gtest_problem gtest_problem.cpp)
wolf_add_gtest
(
gtest_problem gtest_problem.cpp
)
#
target_link_libraries(gtest_problem ${PROJECT_NAME})
target_link_libraries
(
gtest_problem
${
PROJECT_NAME
}
)
# ProcessorBase class test
# ProcessorBase class test
wolf_add_gtest
(
gtest_processor_base gtest_processor_base.cpp
)
wolf_add_gtest
(
gtest_processor_base gtest_processor_base.cpp
)
...
...
This diff is collapsed.
Click to expand it.
test/gtest_problem.cpp
+
1
−
1
View file @
39f575ba
...
@@ -26,6 +26,7 @@ WOLF_PTR_TYPEDEFS(DummySolverManager);
...
@@ -26,6 +26,7 @@ WOLF_PTR_TYPEDEFS(DummySolverManager);
class
DummySolverManager
:
public
SolverManager
class
DummySolverManager
:
public
SolverManager
{
{
public:
DummySolverManager
(
const
ProblemPtr
&
_problem
)
DummySolverManager
(
const
ProblemPtr
&
_problem
)
:
SolverManager
(
_problem
)
:
SolverManager
(
_problem
)
{
{
...
@@ -338,4 +339,3 @@ int main(int argc, char **argv)
...
@@ -338,4 +339,3 @@ int main(int argc, char **argv)
testing
::
InitGoogleTest
(
&
argc
,
argv
);
testing
::
InitGoogleTest
(
&
argc
,
argv
);
return
RUN_ALL_TESTS
();
return
RUN_ALL_TESTS
();
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment