Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / instfail-libtool.test
blob1b6bd2b8f18b31e0db2ab46f49b602395c8277cb
1 #! /bin/sh
2 # Copyright (C) 2008 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 3, 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 <http://www.gnu.org/licenses/>.
17 # The install rule should honor failures of the install program.
18 # Some of these are already caught by instmany.test.
20 # This is the libtool sister test of instfail.test
23 # non-root should catch 'chmod a-r'-challenged file systems.
24 required='non-root libtool libtoolize'
25 . ./defs || Exit 1
27 set -e
29 cat >>configure.in <<END
30 AC_PROG_LIBTOOL
31 AC_OUTPUT
32 END
34 cat >Makefile.am <<'END'
35 bin_PROGRAMS = prog1 prog2 prog3
36 nobase_bin_PROGRAMS = progn1 progn2 progn3
37 lib_LTLIBRARIES = liblt1.la liblt2.la liblt3.la
38 nobase_lib_LTLIBRARIES = libltn1.la libltn2.la libltn3.la
39 unreadable-prog:
40 chmod a-r prog1$(EXEEXT)
41 readable-prog:
42 chmod a+r prog1$(EXEEXT)
43 unreadable-progn:
44 chmod a-r progn1$(EXEEXT)
45 readable-progn:
46 chmod a+r progn1$(EXEEXT)
47 END
49 for n in 1 2 3; do
50 echo "int main () { return 0; }" > prog$n.c
51 echo "int main () { return 0; }" > progn$n.c
52 echo "int foolt$n () { return 0; }" > liblt$n.c
53 echo "int fooltn$n () { return 0; }" > libltn$n.c
54 done
56 libtoolize
57 $ACLOCAL
58 $AUTOCONF
59 $AUTOMAKE --add-missing
61 instdir=`pwd`/inst
62 ./configure --prefix="$instdir"
63 $MAKE
65 $MAKE install
66 $MAKE uninstall
68 $MAKE unreadable-prog
69 $MAKE install-exec && Exit 1
70 $MAKE readable-prog
72 $MAKE unreadable-progn
73 $MAKE install-exec && Exit 1
74 $MAKE readable-progn
76 for file in liblt1.la libltn1.la
78 chmod a-r $file
79 $MAKE install-exec && Exit 1
80 chmod u+r $file
81 done