doc: typos in test file.
[automake.git] / t / uninstall-pr9578.sh
blob38a3438ae8a1505306ce936c8f182824513d0102
1 #! /bin/sh
2 # Copyright (C) 2011-2024 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 # 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 . test-init.sh
27 cat >> configure.ac << 'END'
28 AC_OUTPUT
29 END
31 : > foo
32 : > bar
34 cat > Makefile.am << 'END'
35 bin_SCRIPTS = foo
36 data_DATA = bar
37 END
39 $ACLOCAL
40 $AUTOMAKE
41 $AUTOCONF
43 ./configure --prefix="$(pwd)/inst"
45 $MAKE uninstall
46 test ! -e inst
48 rm -rf inst
50 $MAKE install-exec
51 test -f inst/bin/foo || exit 99 # Sanity check.
52 $MAKE uninstall
53 test ! -e inst/bin/foo
55 $MAKE install-data
56 test -f inst/share/bar || exit 99 # Sanity check.
57 $MAKE uninstall
58 test ! -e inst/share/bar
60 rm -rf inst
62 $MAKE install-exec
63 test -f inst/bin/foo || exit 99 # Sanity check.
64 $MAKE uninstall
65 test ! -e inst/bin/foo