diff options
author | Kerin Millar <kfm@plushkava.net> | 2024-05-19 20:45:30 +0100 |
---|---|---|
committer | Kerin Millar <kfm@plushkava.net> | 2024-05-20 08:49:54 +0100 |
commit | 85e364c40ed8ec473888b28d71a759365cc78aa5 (patch) | |
tree | e69246a8e2ad3c053db6abca7f4680376cbf7c27 /test-functions | |
parent | Add an eqatag() function (diff) | |
download | gentoo-functions-85e364c40ed8ec473888b28d71a759365cc78aa5.tar.gz gentoo-functions-85e364c40ed8ec473888b28d71a759365cc78aa5.tar.bz2 gentoo-functions-85e364c40ed8ec473888b28d71a759365cc78aa5.zip |
test-functions: Include /opt/pkg/bin in PATH
This helps where testing on platforms having utilities that were
installed by pkgsrc. In particular, gfind.
Signed-off-by: Kerin Millar <kfm@plushkava.net>
Diffstat (limited to 'test-functions')
-rwxr-xr-x | test-functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-functions b/test-functions index 1fe07ad..7eb5981 100755 --- a/test-functions +++ b/test-functions @@ -435,7 +435,7 @@ printf 'TAP version 13\n' unset -v dir # PATH is redefined to prevent ebuild-helpers such as die from interfering. -export PATH=/sbin:/bin:/usr/sbin:/usr/bin +export PATH=/sbin:/bin:/usr/sbin:/usr/bin:/opt/pkg/bin export TEST_GENFUNCS=1 export TZ=UTC testnum=0 |