tests: Let 'ltorder.sh' run successfully with Guix dynamic loader
[automake.git] / t / dejagnu5.sh
blob950b83ae3cdc3aee87f12c58d0cea528dac27c2a
1 #! /bin/sh
2 # Copyright (C) 2003-2018 Free Software Foundation, Inc.
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.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # Check that the DejaGnu rules do look for a testsuite named after
18 # the package by default.
20 required=runtest
21 . test-init.sh
23 package=$me
25 cat > $package << 'END'
26 #! /bin/sh
27 echo "Ah, we have been expecting you, Mr. Blond."
28 END
29 chmod +x $package
31 cat >> configure.ac << 'END'
32 AC_OUTPUT
33 END
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
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" }
49 END
51 $ACLOCAL
52 $AUTOCONF
53 $AUTOMAKE --add-missing
55 ./configure
57 $MAKE check
58 test -f $package.log
59 test -f $package.sum
61 $MAKE distcheck