tests: Let 'ltorder.sh' run successfully with Guix dynamic loader
[automake.git] / t / man5.sh
bloba9d4aed6fa3fcdeafc523ae02ed9b0c39fa04e29
1 #! /bin/sh
2 # Copyright (C) 2009-2018 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # Make sure to extract the correct mansection from files in man_MANS.
19 . test-init.sh
21 cat >> configure.ac <<'END'
22 AC_OUTPUT
23 END
25 cat > Makefile.am << 'END'
26 man_MANS = foo-1.4.5/foo.2 foo-1.4.5/bar.3 baz-1.4.2
27 notrans_man_MANS = foo-1.4.5/nfoo.2 foo-1.4.5/nbar.3 nbaz-1.4.2
28 END
30 mkdir foo-1.4.5
32 : > foo-1.4.5/foo.2
33 : > foo-1.4.5/nfoo.2
34 : > foo-1.4.5/bar.3
35 : > foo-1.4.5/nbar.3
36 : > baz-1.4.2
37 : > nbaz-1.4.2
39 $ACLOCAL
40 $AUTOCONF
41 $AUTOMAKE
43 cwd=$(pwd) || fatal_ "getting current working directory"
45 # Let's play with $DESTDIR too, it shouldn't hurt.
46 ./configure --mandir=/man
47 $MAKE DESTDIR="$cwd/_inst" install
49 test -f _inst/man/man2/foo.2
50 test -f _inst/man/man2/nfoo.2
51 test -f _inst/man/man2/baz-1.4.2
52 test -f _inst/man/man2/nbaz-1.4.2
53 test -f _inst/man/man3/bar.3
54 test -f _inst/man/man3/nbar.3
56 test ! -e _inst/man/man1
57 test ! -e _inst/man/man4
58 test ! -e _inst/man/man5
60 $MAKE DESTDIR="$cwd/_inst" uninstall
62 test ! -e _inst/man/man2/foo.2
63 test ! -e _inst/man/man2/nfoo.2
64 test ! -e _inst/man/man2/baz-1.4.2
65 test ! -e _inst/man/man2/nbaz-1.4.2
66 test ! -e _inst/man/man3/bar.3
67 test ! -e _inst/man/man3/nbar.3