tests: make 'lzip.test' executable
[automake.git] / tests / uninstall-pr9578.test
blob9aea52d03cd8b9e54291393cbb57fd6d298f35af
1 #! /bin/sh
2 # Copyright (C) 2011 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 <http://www.gnu.org/licenses/>.
17 # Check against automake bug#9578: "make uninstall" issued before
18 # "make install" or after a mere "make install-data" or a mere
19 # "make install-exec" failed spuriously.
21 # FIXME: this test only deal with DATA and script primaries; maybe we
22 # need sister tests for other primaries too? E.g., PROGRAMS, LISP,
23 # PYTHON, etc...
25 . ./defs || Exit 1
27 set -e
29 cat >> configure.in << 'END'
30 AC_OUTPUT
31 END
33 : > foo
34 : > bar
36 cat > Makefile.am << 'END'
37 bin_SCRIPTS = foo
38 data_DATA = bar
39 END
41 $ACLOCAL
42 $AUTOMAKE
43 $AUTOCONF
45 ./configure --prefix="`pwd`/inst"
47 $MAKE uninstall
48 test ! -d inst
50 rm -rf inst
52 $MAKE install-exec
53 test -f inst/bin/foo || Exit 99 # Sanity check.
54 $MAKE uninstall
55 test ! -f inst/bin/foo
57 $MAKE install-data
58 test -f inst/share/bar || Exit 99 # Sanity check.
59 $MAKE uninstall
60 test ! -f inst/share/bar
62 rm -rf inst
64 $MAKE install-exec
65 test -f inst/bin/foo || Exit 99 # Sanity check.
66 $MAKE uninstall
67 test ! -f inst/bin/foo