am-ft: make the environment available earlier
[platform/upstream/automake.git] / t / dejagnu5.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 do look for a testsuite named after
18 # the package by default.
19
20 required=runtest
21 . test-init.sh
22
23 package=$me
24
25 cat > $package << 'END'
26 #! /bin/sh
27 echo "Ah, we have been expecting you, Mr. Blond."
28 END
29 chmod +x $package
30
31 cat >> configure.ac << 'END'
32 AC_OUTPUT
33 END
34
35 cat > Makefile.am << END
36 AUTOMAKE_OPTIONS = dejagnu
37 EXTRA_DIST = $package $package.test/$package.exp
38 AM_RUNTESTFLAGS = PACKAGE=\$(srcdir)/$package
39 END
40
41 mkdir $package.test
42 cat > $package.test/$package.exp << 'END'
43 set test "a_dejagnu_test"
44 spawn $PACKAGE
45 expect {
46     "Ah, we have been expecting you, Mr. Blond." { 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 $package.log
59 test -f $package.sum
60
61 $MAKE distcheck
62
63 :