Revert Automake license to GPLv2+.
[platform/upstream/automake.git] / tests / dejagnu5.test
1 #! /bin/sh
2 # Copyright (C) 2003  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 that the DejaGnu rules do look for a testsuite named after
18 # the package by default.
19
20 required=runtest
21 . ./defs || Exit 1
22
23 set -e
24
25 # Get the package name from configure.in.
26 package=`$FGREP AC_INIT configure.in | sed -e 's:^[^[]*\[\([^]]*\)\].*$:\1:'`
27
28 cat > $package << 'END'
29 #! /bin/sh
30 echo "Ah, we have been expecting you, Mr. Blond."
31 END
32
33 chmod +x $package
34
35 echo AC_OUTPUT >> configure.in
36
37 cat > Makefile.am << END
38 AUTOMAKE_OPTIONS = dejagnu
39
40 EXTRA_DIST = $package $package.test/$package.exp
41 END
42
43 echo "AM_RUNTESTFLAGS = PACKAGE=\$(srcdir)/$package" >> Makefile.am
44
45 mkdir $package.test
46
47 cat > $package.test/$package.exp << 'END'
48 set test "test"
49 spawn $PACKAGE
50 expect {
51     "Ah, we have been expecting you, Mr. Blond." { pass "$test" }
52     default { fail "$test" }
53 }
54 END
55
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE --add-missing
59
60 ./configure
61
62 $MAKE check
63 test -f $package.log
64 test -f $package.sum
65
66 $MAKE distcheck