Skip to content

Commit

Permalink
Fix test names in favor to {NODE_NAME}.test
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Aug 2, 2016
1 parent 705f40d commit 37f28b7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions jsk_pcl_ros_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,14 @@ if (CATKIN_ENABLE_TESTING)
if(TARGET tests)
add_dependencies(tests install_test_data)
endif()
add_rostest(test/point_indices_to_cluster_point_indices.test)
if("$ENV{ROS_DISTRO}" STRGREATER "hydro")
# unexpected error
add_rostest(test/point_indices_to_mask_image.test)
# because of unreleased topic_tools/transform on hydro
add_rostest(test/test_pointcloud_to_pcd.test DEPENDENCIES install_test_data)
add_rostest(test/test_pointcloud_to_point_indices.test DEPENDENCIES install_test_data)
add_rostest(test/pointcloud_to_pcd.test DEPENDENCIES install_test_data)
add_rostest(test/pointcloud_to_point_indices.test DEPENDENCIES install_test_data)
# because of unreleased jsk_tools/test_topic_published.py on hydro
add_rostest(test/pointcloud_to_mask_image.test install_test_data)
endif()
endif()

0 comments on commit 37f28b7

Please sign in to comment.