Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 31 Jul 2018 15:22:00
Message-Id: 1533050482.9cb57d5baa0fddfa46949b95cf91b38cd9780ae5.aballier@gentoo
1 commit: 9cb57d5baa0fddfa46949b95cf91b38cd9780ae5
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 31 15:21:14 2018 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 31 15:21:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb57d5b
7
8 eclass/ros-catkin.eclass: Always try to build tests.
9
10 Closes: https://bugs.gentoo.org/661122
11
12 eclass/ros-catkin.eclass | 6 +-----
13 1 file changed, 1 insertion(+), 5 deletions(-)
14
15 diff --git a/eclass/ros-catkin.eclass b/eclass/ros-catkin.eclass
16 index a556f28b4c9..17745d72eca 100644
17 --- a/eclass/ros-catkin.eclass
18 +++ b/eclass/ros-catkin.eclass
19 @@ -224,11 +224,7 @@ ros-catkin_src_test() {
20 einfo "Regenerating setup_cached.sh for tests"
21 ${PYTHON:-python} catkin_generated/generate_cached_setup.py || die
22 fi
23 - # Using cmake-utils_src_make with nonfatal does not work and breaks e.g.
24 - # dev-ros/rviz.
25 - if nonfatal emake tests -n &> /dev/null ; then
26 - cmake-utils_src_make tests
27 - fi
28 + nonfatal cmake-utils_src_make tests
29 cmake-utils_src_test "${@}"
30 }