tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / uninstall-pr9578.sh
1 #! /bin/sh
2 # Copyright (C) 2011-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 # 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.
20 #
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...
24
25 . test-init.sh
26
27 cat >> configure.ac << 'END'
28 AC_OUTPUT
29 END
30
31 : > foo
32 : > bar
33
34 cat > Makefile.am << 'END'
35 bin_SCRIPTS = foo
36 data_DATA = bar
37 END
38
39 $ACLOCAL
40 $AUTOMAKE
41 $AUTOCONF
42
43 ./configure --prefix="$(pwd)/inst"
44
45 $MAKE uninstall
46 test ! -e inst
47
48 rm -rf inst
49
50 $MAKE install-exec
51 test -f inst/bin/foo || exit 99 # Sanity check.
52 $MAKE uninstall
53 test ! -e inst/bin/foo
54
55 $MAKE install-data
56 test -f inst/share/bar || exit 99 # Sanity check.
57 $MAKE uninstall
58 test ! -e inst/share/bar
59
60 rm -rf inst
61
62 $MAKE install-exec
63 test -f inst/bin/foo || exit 99 # Sanity check.
64 $MAKE uninstall
65 test ! -e inst/bin/foo
66
67 :