dev-ros/navfn: fix tests
authorAlexis Ballier <aballier@gentoo.org>
Wed, 11 Dec 2019 16:11:36 +0000 (17:11 +0100)
committerAlexis Ballier <aballier@gentoo.org>
Wed, 11 Dec 2019 16:12:29 +0000 (17:12 +0100)
Closes: https://bugs.gentoo.org/625168
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
dev-ros/navfn/files/tests.patch [new file with mode: 0644]
dev-ros/navfn/navfn-1.16.3.ebuild
dev-ros/navfn/navfn-9999.ebuild

diff --git a/dev-ros/navfn/files/tests.patch b/dev-ros/navfn/files/tests.patch
new file mode 100644 (file)
index 0000000..2dcd222
--- /dev/null
@@ -0,0 +1,13 @@
+Index: navfn/test/path_calc_test.cpp
+===================================================================
+--- navfn.orig/test/path_calc_test.cpp
++++ navfn/test/path_calc_test.cpp
+@@ -38,7 +38,7 @@
+ navfn::NavFn* make_willow_nav()
+ {
+   int sx,sy;
+-  std::string path = ros::package::getPath( ROS_PACKAGE_NAME ) + "/test/willow_costmap.pgm";
++  std::string path = @PGM_PATH@ ;
+   COSTTYPE *cmap = readPGM( path.c_str(), &sx, &sy, true );
+   if( cmap == NULL )
index da142f226c817f0c177f228db1720eea6ff16411..a65e0eb3f75f9d4e421d5ea475646d11e88ff95d 100644 (file)
@@ -36,4 +36,9 @@ DEPEND="${RDEPEND}
        test? ( dev-cpp/gtest )
        dev-ros/cmake_modules"
 
-PATCHES=( "${FILESDIR}/pgm_h_location.patch" )
+PATCHES=( "${FILESDIR}/pgm_h_location.patch" "${FILESDIR}/tests.patch" )
+
+src_prepare() {
+       ros-catkin_src_prepare
+       sed -e "s#@PGM_PATH@#\"${S}/test/willow_costmap.pgm\"#" -i test/path_calc_test.cpp || die
+}
index da9427d6977b40c6bfd50f9b312c835b03accf3a..a65e0eb3f75f9d4e421d5ea475646d11e88ff95d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -36,4 +36,9 @@ DEPEND="${RDEPEND}
        test? ( dev-cpp/gtest )
        dev-ros/cmake_modules"
 
-PATCHES=( "${FILESDIR}/pgm_h_location.patch" )
+PATCHES=( "${FILESDIR}/pgm_h_location.patch" "${FILESDIR}/tests.patch" )
+
+src_prepare() {
+       ros-catkin_src_prepare
+       sed -e "s#@PGM_PATH@#\"${S}/test/willow_costmap.pgm\"#" -i test/path_calc_test.cpp || die
+}