tests: expose automake bug#14560
[platform/upstream/automake.git] / t / man5.sh
1 #! /bin/sh
2 # Copyright (C) 2009-2013 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Make sure to extract the correct mansection from files in man_MANS.
18
19 . test-init.sh
20
21 cat >> configure.ac <<'END'
22 AC_OUTPUT
23 END
24
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
29
30 mkdir foo-1.4.5
31
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
38
39 $ACLOCAL
40 $AUTOCONF
41 $AUTOMAKE
42
43 cwd=$(pwd) || fatal_ "getting current working directory"
44
45 # Let's play with $DESTDIR too, it shouldn't hurt.
46 ./configure --mandir=/man
47 $MAKE DESTDIR="$cwd/_inst" install
48
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
55
56 test ! -e _inst/man/man1
57 test ! -e _inst/man/man4
58 test ! -e _inst/man/man5
59
60 $MAKE DESTDIR="$cwd/_inst" uninstall
61
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
68
69 :