automake: recognize all-numeric MAJ.MIN.MICROa.ALPHA versions better.
[automake.git] / t / dejagnu6.sh
blobd7ff5dde84f42d281bd8bd34fc0314e22dcb0b18
1 #! /bin/sh
2 # Copyright (C) 2003-2024 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 "make check" fails, when a DejaGnu test fails.
19 required=runtest
20 . test-init.sh
22 cat > faildeja << 'END'
23 #! /bin/sh
24 echo whatever
25 END
26 chmod +x faildeja
28 cat >> configure.ac << 'END'
29 AC_CONFIG_FILES([testsuite/Makefile])
30 AC_OUTPUT
31 END
33 cat > Makefile.am << 'END'
34 SUBDIRS = testsuite
35 END
37 mkdir testsuite
39 cat > testsuite/Makefile.am << 'END'
40 AUTOMAKE_OPTIONS = dejagnu
41 DEJATOOL = faildeja
42 AM_RUNTESTFLAGS = FAILDEJA=$(top_srcdir)/faildeja
43 END
45 mkdir testsuite/faildeja.test
46 cat > testsuite/faildeja.test/faildeja.exp << 'END'
47 set test failing_deja_test
48 spawn $FAILDEJA
49 expect {
50 default { fail "$test" }
52 END
54 $ACLOCAL
55 $AUTOCONF
56 $AUTOMAKE --add-missing
58 ./configure
60 $MAKE check && exit 1
61 test -f testsuite/faildeja.log
62 test -f testsuite/faildeja.sum
63 $FGREP 'FAIL: failing_deja_test' testsuite/faildeja.sum