source: trunk/essentials/sys-devel/automake-1.10/tests/dejagnu4.test

Last change on this file was 3147, checked in by bird, 18 years ago

automake 1.10

File size: 2.1 KB
Line 
1#! /bin/sh
2# Copyright (C) 2003, 2006 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
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.
10#
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.
15#
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.
20
21# Check that the DejaGnu rules work for a simple program and test case.
22# Also check PR 488: Failure of the first of several tools tested.
23
24required=runtest
25. ./defs || exit 1
26
27set -e
28
29cat > hammer << 'END'
30#! /bin/sh
31echo "Everything looks like a nail to me!"
32END
33
34chmod +x hammer
35
36cat > spanner << 'END'
37#! /bin/sh
38echo "I'm a right spanner!"
39END
40
41chmod +x spanner
42
43echo AC_OUTPUT >> configure.in
44
45cat > Makefile.am << 'END'
46AUTOMAKE_OPTIONS = dejagnu
47
48DEJATOOL = hammer spanner
49
50AM_RUNTESTFLAGS = HAMMER=$(srcdir)/hammer SPANNER=$(srcdir)/spanner
51
52EXTRA_DIST = hammer hammer.test/hammer.exp
53EXTRA_DIST += spanner spanner.test/spanner.exp
54END
55
56mkdir hammer.test
57mkdir spanner.test
58
59cat > hammer.test/hammer.exp << 'END'
60set test test
61spawn $HAMMER
62expect {
63 "Everything looks like a nail to me!" { pass "$test" }
64 default { fail "$test" }
65}
66END
67
68cat > spanner.test/spanner.exp << 'END'
69set test test
70spawn $SPANNER
71expect {
72 "I'm a right spanner!" { pass "$test" }
73 default { fail "$test" }
74}
75END
76
77$ACLOCAL
78$AUTOCONF
79$AUTOMAKE --add-missing
80
81./configure
82
83$MAKE check
84test -f hammer.log
85test -f hammer.sum
86test -f spanner.log
87test -f spanner.sum
88
89$MAKE distcheck
90
91# Test for PR 488.
92sed 's/E\(verything\)/Not e\1/' hammer > thammer
93mv thammer hammer
94chmod +x hammer
95
96$MAKE check && exit 1
97:
Note: See TracBrowser for help on using the repository browser.