#! /bin/sh # Test additional language-specific requests for localized man pages. : "${srcdir=.}" # shellcheck source-path=SCRIPTDIR . "$srcdir/testlib.sh" : "${MAN=man}" init fake_config /usr/share/man MANPATH="$tmpdir/usr/share/man" export MANPATH cat >"$tmpdir/fake-program" <>"$tmpdir/manpath.config" <"$tmpdir/1.exp" # shellcheck disable=SC2154 if [ "$troff_is_groff" = yes ]; then cat >>"$tmpdir/1.exp" <<'EOF' . mso xyzzy.tmac .hla xyzzy EOF fi cat >>"$tmpdir/1.exp" <<'EOF' test \- xyzzy language page for test EOF cat >"$tmpdir/2.exp" <<'EOF' .TH xyz 1 test \- top-level xyz page EOF run $MAN -L xyzzy_foo.bar -C "$tmpdir/manpath.config" test |\ grep 'xyzzy' >"$tmpdir/1.out" expect_files_equal 'language-specific requests for localized man page' \ "$tmpdir/1.exp" "$tmpdir/1.out" run $MAN -L xyzzy_foo.bar -C "$tmpdir/manpath.config" xyz |\ grep 'xyz' >"$tmpdir/2.out" expect_files_equal 'no language-specific requests for top-level man page' \ "$tmpdir/2.exp" "$tmpdir/2.out" finish