summaryrefslogtreecommitdiffstats
path: root/src/tests/man-executable-page-on-path
blob: 108e157c58eb10a0a73ccc4fcda8f35c76b82c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /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