(root)/
man-db-2.12.0/
src/
tests/
man-executable-page-on-path
#! /bin/sh

# Test for:
#   https://bugs.debian.org/608490

: "${srcdir=.}"
# shellcheck source-path=SCRIPTDIR
. "$srcdir/testlib.sh"

: "${MAN=man}"

init
fake_config /usr/share/man
MANPATH="$tmpdir/usr/share/man"
export MANPATH

write_page file 1 "$tmpdir/file.1" UTF-8 '' '' 'file \- test'
chmod +x "$tmpdir/file.1"
PATH="$PATH:$tmpdir" run $MAN \
	-C "$tmpdir/manpath.config" "$tmpdir/file.1" >/dev/null
report 'executable page on path' "$?"

finish