Reword the copyright notices to match what's suggested in GPLv3.
[automake/plouj.git] / tests / dejagnu5.test
blobb9a5c18877f763240e1d5a1de0b27a038dea9053
1 #! /bin/sh
2 # Copyright (C) 2003 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 3, 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 <http://www.gnu.org/licenses/>.
17 # Check that the DejaGnu rules do look for a testsuite named after
18 # the package by default.
20 required=runtest
21 . ./defs || exit 1
23 set -e
25 # Get the package name from configure.in.
26 package=`$FGREP AC_INIT configure.in | sed -e 's:^[^[]*\[\([^]]*\)\].*$:\1:'`
28 cat > $package << 'END'
29 #! /bin/sh
30 echo "Ah, we have been expecting you, Mr. Blond."
31 END
33 chmod +x $package
35 echo AC_OUTPUT >> configure.in
37 cat > Makefile.am << END
38 AUTOMAKE_OPTIONS = dejagnu
40 EXTRA_DIST = $package $package.test/$package.exp
41 END
43 echo "AM_RUNTESTFLAGS = PACKAGE=\$(srcdir)/$package" >> Makefile.am
45 mkdir $package.test
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" }
54 END
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE --add-missing
60 ./configure
62 $MAKE check
63 test -f $package.log
64 test -f $package.sum
66 $MAKE distcheck