Append $(EXEEXT) to programs that may be listed in TESTS.
[automake.git] / tests / insthook.test
blobb40d65f8953b610eed587b120d0e6698ef7c33e9
1 #! /bin/sh
2 # Copyright (C) 2003, 2005 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # Make sure the install-exec-hook example we give in the manual works.
23 . ./defs || exit 1
25 set -e
27 cat >>configure.in <<'EOF'
28 AC_PROG_LN_S
29 AC_OUTPUT
30 EOF
32 cat >Makefile.am <<'END'
33 dist_bin_SCRIPTS = foo
35 install-exec-hook:
36 cd $(DESTDIR)$(bindir) && \
37 mv -f foo foo-$(VERSION) && \
38 $(LN_S) foo-$(VERSION) foo
40 installcheck-local:
41 test -f $(bindir)/foo
42 test -f $(bindir)/foo-$(VERSION)
43 : > $(top_srcdir)/../ok
44 END
46 echo 1 > foo
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE
52 ./configure
53 $MAKE distcheck
54 # Sanity check to make sure installcheck-local was run.
55 test -f ok
57 # Make sure that installing a second version doesn't erase the first
58 # one. (This is error prone since `foo' symlinks to `foo-1.0' and the
59 # second version will overwrite `foo'. Hopefully `install' and `install-sh'
60 # are smart enough to erase the `foo' symlink before installing the new
61 # version.)
62 ./configure --bindir=`pwd`/bin
63 $MAKE install
64 echo 2 > foo
65 VERSION=2.0 $MAKE -e install
66 grep 1 bin/foo-1.0
67 grep 2 bin/foo-2.0
68 grep 2 bin/foo
71 # install-hook is an error.
72 cat >>Makefile.am <<EOF
73 install-hook:
74 echo test
75 EOF
77 AUTOMAKE_fails
78 grep install-data-hook stderr
79 grep install-exec-hook stderr