commit: 9cb57d5baa0fddfa46949b95cf91b38cd9780ae5 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org> AuthorDate: Tue Jul 31 15:21:14 2018 +0000 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org> CommitDate: Tue Jul 31 15:21:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb57d5b
eclass/ros-catkin.eclass: Always try to build tests. Closes: https://bugs.gentoo.org/661122 eclass/ros-catkin.eclass | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/eclass/ros-catkin.eclass b/eclass/ros-catkin.eclass index a556f28b4c9..17745d72eca 100644 --- a/eclass/ros-catkin.eclass +++ b/eclass/ros-catkin.eclass @@ -224,11 +224,7 @@ ros-catkin_src_test() { einfo "Regenerating setup_cached.sh for tests" ${PYTHON:-python} catkin_generated/generate_cached_setup.py || die fi - # Using cmake-utils_src_make with nonfatal does not work and breaks e.g. - # dev-ros/rviz. - if nonfatal emake tests -n &> /dev/null ; then - cmake-utils_src_make tests - fi + nonfatal cmake-utils_src_make tests cmake-utils_src_test "${@}" }
