-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added 'use_first_detection' param (need testing)
Signed-off-by: Alberto Tudela <ajtudela@gmail.com>
- Loading branch information
Showing
5 changed files
with
46 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,24 @@ | ||
# Test cluster | ||
ament_add_gtest(test_scitos2_cluster | ||
test_cluster.cpp | ||
) | ||
ament_target_dependencies(test_scitos2_cluster | ||
${dependencies} | ||
) | ||
target_link_libraries(test_scitos2_cluster | ||
${library_name} | ||
) | ||
ament_add_gtest(test_scitos2_cluster test_cluster.cpp) | ||
ament_target_dependencies(test_scitos2_cluster ${dependencies}) | ||
target_link_libraries(test_scitos2_cluster ${library_name}) | ||
|
||
# Test segmentation | ||
ament_add_gtest(test_scitos2_segmentation | ||
test_segmentation.cpp | ||
) | ||
ament_target_dependencies(test_scitos2_segmentation | ||
${dependencies} | ||
) | ||
target_link_libraries(test_scitos2_segmentation | ||
${library_name} | ||
) | ||
ament_add_gtest(test_scitos2_segmentation test_segmentation.cpp) | ||
ament_target_dependencies(test_scitos2_segmentation ${dependencies}) | ||
target_link_libraries(test_scitos2_segmentation ${library_name}) | ||
|
||
# Test perception | ||
ament_add_gtest(test_scitos2_perception | ||
test_perception.cpp | ||
) | ||
ament_target_dependencies(test_scitos2_perception | ||
${dependencies} | ||
) | ||
target_link_libraries(test_scitos2_perception | ||
${library_name} | ||
) | ||
ament_add_gtest(test_scitos2_perception test_perception.cpp) | ||
ament_target_dependencies(test_scitos2_perception ${dependencies}) | ||
target_link_libraries(test_scitos2_perception ${library_name}) | ||
|
||
# Test charging dock | ||
ament_add_gtest(test_scitos2_charging_dock | ||
test_charging_dock.cpp | ||
) | ||
ament_target_dependencies(test_scitos2_charging_dock | ||
${dependencies} | ||
) | ||
target_link_libraries(test_scitos2_charging_dock | ||
${library_name} | ||
) | ||
ament_add_gtest(test_scitos2_charging_dock test_charging_dock.cpp) | ||
ament_target_dependencies(test_scitos2_charging_dock ${dependencies}) | ||
target_link_libraries(test_scitos2_charging_dock ${library_name}) | ||
|
||
# Test dock saver | ||
ament_add_gtest(test_dock_saver | ||
test_dock_saver.cpp | ||
) | ||
ament_target_dependencies(test_dock_saver | ||
${dependencies} | ||
) | ||
target_link_libraries(test_dock_saver | ||
${library_name} | ||
) | ||
ament_add_gtest(test_dock_saver test_dock_saver.cpp) | ||
ament_target_dependencies(test_dock_saver ${dependencies}) | ||
target_link_libraries(test_dock_saver ${library_name}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters