docs: deprecate .log -> .html conversion by parallel-tests
[automake.git] / tests / check11.test
blob1fe6a4d3a26c8e0bedc4c6ab7032d50cc266087d
1 #! /bin/sh
2 # Copyright (C) 2009, 2010 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 <http://www.gnu.org/licenses/>.
17 # Check skip summary.
19 . ./defs || Exit 1
21 set -e
23 cat >> configure.in << 'END'
24 AC_OUTPUT
25 END
27 cat > Makefile.am << 'END'
28 TESTS = skip skip2
29 END
31 cat >>skip <<'END'
32 #! /bin/sh
33 exit 77
34 END
35 chmod a+x skip
36 cp skip skip2
38 $ACLOCAL
39 $AUTOCONF
40 $AUTOMAKE -a
42 ./configure
43 env TESTS=skip $MAKE -e check >stdout
44 cat stdout
45 grep '1.*passed' stdout && Exit 1
47 env TESTS="skip skip2" $MAKE -e check >stdout
48 cat stdout
49 grep '2.*passed' stdout && Exit 1