diff options
author | Alexis Ballier <aballier@gentoo.org> | 2018-07-31 17:21:14 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2018-07-31 17:21:22 +0200 |
commit | 9cb57d5baa0fddfa46949b95cf91b38cd9780ae5 (patch) | |
tree | bde18df4c95d63b06772c688c5447cf1ab59c9a8 /eclass/ros-catkin.eclass | |
parent | dev-ros/xmlrpcpp: Remove old (diff) | |
download | gentoo-9cb57d5baa0fddfa46949b95cf91b38cd9780ae5.tar.gz gentoo-9cb57d5baa0fddfa46949b95cf91b38cd9780ae5.tar.bz2 gentoo-9cb57d5baa0fddfa46949b95cf91b38cd9780ae5.zip |
eclass/ros-catkin.eclass: Always try to build tests.
Closes: https://bugs.gentoo.org/661122
Diffstat (limited to 'eclass/ros-catkin.eclass')
-rw-r--r-- | eclass/ros-catkin.eclass | 6 |
1 files changed, 1 insertions, 5 deletions
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 "${@}" } |