docs: deprecate .log -> .html conversion by parallel-tests
[automake.git] / tests / confh8.test
blob146d2f0598671a84332b9aac4b08922624b8b555
1 #! /bin/sh
2 # Copyright (C) 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 # Test to make sure several config headers are allowed.
18 # See also sister "minimalistic" test `confh7.test'.
20 . ./defs || Exit 1
22 set -e
24 cat >> configure.in << 'END'
25 AM_CONFIG_HEADER([one.h two.h])
26 AC_OUTPUT
27 END
29 cat > Makefile.am << 'END'
30 .PHONY: test0 test1 test2
31 test0:
32 @echo DIST_COMMON = $(DIST_COMMON)
33 echo ' ' $(DIST_COMMON) ' ' | grep '[ /]one\.h\.in '
34 echo ' ' $(DIST_COMMON) ' ' | grep '[ /]two\.h\.in '
35 : Processed header files should not be distributed.
36 if echo ' ' $(DIST_COMMON) ' ' | grep '\.h '; then \
37 exit 1; \
38 else \
39 exit 0; \
41 test1: all
42 test -f one.h
43 test -f two.h
44 test2: distdir
45 ls -l $(distdir)/*
46 test -f $(distdir)/one.h.in
47 test -f $(distdir)/two.h.in
48 : Processed header files should not be distributed.
49 test ! -r $(distdir)/one.h
50 test ! -r $(distdir)/two.h
51 check-local: test0 test1 test2
52 END
54 : > one.h.in
55 : > two.h.in
57 $ACLOCAL
58 $AUTOCONF
59 $AUTOMAKE
61 ./configure
63 $MAKE test0
64 $MAKE test1
65 $MAKE test2
66 $MAKE distcheck