Append $(EXEEXT) to programs that may be listed in TESTS.
[automake.git] / tests / dejagnu7.test
blobc4899f412491aa85b17c74f69be90a301f40e82e
1 #! /bin/sh
2 # Copyright (C) 2003 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 # Check that "make check" fails, when we invoke DejaGnu tests with --status
22 # (to detect TCL errors) on a file with TCL errors.
24 required=runtest
25 . ./defs || exit 1
27 # Check whether DejaGnu supports --status
28 runtest --help | $FGREP -e --status || exit 77
30 cat > failtcl << 'END'
31 #! /bin/sh
32 echo whatever
33 END
35 chmod +x failtcl
37 echo AC_OUTPUT >> configure.in
39 cat > Makefile.am << 'END'
40 AUTOMAKE_OPTIONS = dejagnu
42 DEJATOOL = failtcl
44 AM_RUNTESTFLAGS = --status FAILTCL=$(srcdir)/failtcl
45 END
47 mkdir failtcl.test
49 cat > failtcl.test/failtcl.exp << 'END'
50 set test test
51 spawn $FAILTCL
52 expect {
53 default { pass "$test" }
54 # Oops, no closing brace.
55 END
57 $ACLOCAL
58 $AUTOCONF
59 $AUTOMAKE --add-missing
61 ./configure
63 $MAKE check && exit 1
64 test -f failtcl.log
65 test -f failtcl.sum
66 $FGREP 'missing close-brace' failtcl.sum