tests: expose automake bug#14560
[platform/upstream/automake.git] / t / dejagnu3.sh
1 #! /bin/sh
2 # Copyright (C) 2003-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 # Check that the DejaGnu rules work for a simple program and test case.
18
19 required=runtest
20 . test-init.sh
21
22 cat > hammer << 'END'
23 #! /bin/sh
24 echo "Everything looks like a nail to me!"
25 END
26
27 chmod +x hammer
28
29 cat >> configure.ac << 'END'
30 AC_OUTPUT
31 END
32
33 cat > Makefile.am << 'END'
34 AUTOMAKE_OPTIONS = dejagnu
35 DEJATOOL = hammer
36 AM_RUNTESTFLAGS = HAMMER=$(srcdir)/hammer
37 EXTRA_DIST = hammer hammer.test/hammer.exp
38 END
39
40 mkdir hammer.test
41
42 cat > hammer.test/hammer.exp << 'END'
43 set test test
44 spawn $HAMMER
45 expect {
46     "Everything looks like a nail to me!" { pass "$test" }
47     default { fail "$test" }
48 }
49 END
50
51 $ACLOCAL
52 $AUTOCONF
53 $AUTOMAKE --add-missing
54
55 ./configure
56
57 $MAKE check
58 test -f hammer.log
59 test -f hammer.sum
60
61 $MAKE distcheck
62
63 # Ensure that the envvar RUNTESTFLAGS is used.
64 # Report from Mark Mitchell.
65 RUNTESTFLAGS=--unknown-runtest-option; export RUNTESTFLAGS
66 run_make -M -e FAIL check
67 $FGREP 'unknown-runtest-option' output
68
69 :