Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / dejagnu5.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2010 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 package=$me
26
27 cat > $package << 'END'
28 #! /bin/sh
29 echo "Ah, we have been expecting you, Mr. Blond."
30 END
31 chmod +x $package
32
33 cat >> configure.in << 'END'
34 AC_OUTPUT
35 END
36
37 cat > Makefile.am << END
38 AUTOMAKE_OPTIONS = dejagnu
39 EXTRA_DIST = $package $package.test/$package.exp
40 AM_RUNTESTFLAGS = PACKAGE=\$(srcdir)/$package
41 END
42
43 mkdir $package.test
44 cat > $package.test/$package.exp << 'END'
45 set test "a_dejagnu_test"
46 spawn $PACKAGE
47 expect {
48     "Ah, we have been expecting you, Mr. Blond." { pass "$test" }
49     default { fail "$test" }
50 }
51 END
52
53 $ACLOCAL
54 $AUTOCONF
55 $AUTOMAKE --add-missing
56
57 ./configure
58
59 $MAKE check
60 test -f $package.log
61 test -f $package.sum
62
63 $MAKE distcheck
64
65 :