tests: expose automake bug#14560
[platform/upstream/automake.git] / t / amhello-binpkg.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 # Test an example from the manual about the 'amhello' package:
18 # using DESTDIR to build simple, no-frills binary packages.
19
20 am_create_testdir=empty
21 . test-init.sh
22
23 cp "$am_docdir"/amhello-1.0.tar.gz . \
24   || fatal_ "cannot get amhello tarball"
25
26 gzip -dc amhello-1.0.tar.gz | tar xf -
27 cd amhello-1.0
28
29 ./configure --prefix /usr
30 $MAKE
31 $MAKE DESTDIR="$(pwd)/inst" install
32 cd inst
33 find . -type f -print > ../files.lst
34 tar cvf amhello-1.0-i686.tar.gz $(cat ../files.lst) > tar.got 2>&1
35
36 EXEEXT=$(sed -n -e 's/^EXEEXT *= *//p' < ../Makefile)
37
38 if tar --version </dev/null | grep GNU; then
39   LC_ALL=C sort tar.got > t
40   mv -f t tar.got
41   diff - tar.got <<END
42 ./usr/bin/hello$EXEEXT
43 ./usr/share/doc/amhello/README
44 END
45 else
46   : Be laxer with other tar implementations, to avoid spurious failures.
47   $EGREP '(^| )(\./)?usr/bin/hello'$EXEEXT'( |$)' tar.got
48   $EGREP '(^| )(\./)?usr/share/doc/amhello/README( |$)' tar.got
49 fi
50
51 :