From: Alexis Ballier Date: Tue, 31 Jul 2018 15:21:14 +0000 (+0200) Subject: eclass/ros-catkin.eclass: Always try to build tests. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9cb57d5baa0fddfa46949b95cf91b38cd9780ae5;p=gentoo.git eclass/ros-catkin.eclass: Always try to build tests. Closes: https://bugs.gentoo.org/661122 --- diff --git a/eclass/ros-catkin.eclass b/eclass/ros-catkin.eclass index a556f28b4c95..17745d72ecaf 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 "${@}" }