Skip to content

Commit

Permalink
media-gfx/nvidia-texture-tools: fix test datapath handling
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/740766
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Bernard Cafarelli <[email protected]>
  • Loading branch information
voyageur committed Sep 7, 2020
1 parent 6be079f commit c5cc1ae
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 4c95dc87165a439698f63c3861c7c17b1fe2193a Mon Sep 17 00:00:00 2001
From: Bernard Cafarelli <[email protected]>
Date: Mon, 7 Sep 2020 14:29:22 +0200
Subject: [PATCH] Fix data testsuite path

Add separator between base path and set path if base path is set

Fixes #299
---
src/nvtt/tests/testsuite.cpp | 3 +++
1 file changed, 3 insertions(+)

diff --git a/src/nvtt/tests/testsuite.cpp b/src/nvtt/tests/testsuite.cpp
index 9737807..06ab9d1 100644
--- a/src/nvtt/tests/testsuite.cpp
+++ b/src/nvtt/tests/testsuite.cpp
@@ -509,6 +509,9 @@ int main(int argc, char *argv[])
nvtt::Context context;
context.enableCudaAcceleration(!nocuda);

+ if (basePath.length() > 0) {
+ basePath.appendSeparator();
+ }
basePath.append(set.basePath);

FileSystem::changeDirectory(basePath.str());
--
2.28.0

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
"

PATCHES=( "${FILESDIR}"/${P}-cmake.patch )
PATCHES=(
"${FILESDIR}"/${P}-cmake.patch
"${FILESDIR}"/${P}-test_path.patch
)
DOCS=( ChangeLog README.md )

pkg_pretend() {
Expand Down

0 comments on commit c5cc1ae

Please sign in to comment.