2 # Copyright (C) 2008 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)
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 parallel automake execution.
19 # There are several hypotheses to be tested: Independently of the number
20 # of threads used by automake,
21 # 0) the generated Makefile.in files must be identical without --add-missing,
22 # 1) the Makefile.in that distributes auxiliary files must be generated
23 # after all other ones, so all installed aux files are caught,
24 # 2) normal automake output should have identical content and be ordered
25 # in the same way, when --add-missing is not passed, or when
26 # --add-missing is passed but there are no concurrent file requirements
27 # (i.e., two Makefile.am files call for the same needed aux file)
28 # 3) normal automake output should be identical and ordered in the same way
29 # with --add-missing, even with concurrent file requirements, and the
30 # installation of aux files should be race-free,
31 # 4) warning and normal error output should be identical, in that duplicate
32 # warnings should be omitted in the same way as without threads,
33 # 5) fatal error and debug messages could be identical. This is not
36 # This test checks (0), (1), and (2). See sister tests for further coverage.
42 cat > configure.
in << 'END'
43 AC_INIT
([parallel-am
], [1.0])
44 AC_CONFIG_AUX_DIR
([build-aux
])
49 AC_CONFIG_FILES
([Makefile
])
52 cat > Makefile.am
<< 'END'
56 list
='1 2 3 4 5 6 7 8 9'
58 echo "AC_CONFIG_FILES([sub$i/Makefile])" >> configure.
in
59 echo "SUBDIRS += sub$i" >> Makefile.am
61 echo > sub
$i/Makefile.am
63 # Use an include chain to cause a nontrivial location object to be
64 # serialized through a thread queue.
65 echo 'include foo.am' >> sub
7/Makefile.am
66 echo 'include bar.am' > sub
7/foo.am
67 echo 'python_PYTHON = foo.py' > sub
7/bar.am
68 echo 'lisp_LISP = foo.el' >> sub
8/Makefile.am
69 echo 'bin_PROGRAMS = p' >> sub
9/Makefile.am
71 rm -f install-sh missing depcomp
76 # This test may have to be run several times in order to expose the
77 # race that, when the last Makefile.in (the toplevel one) is created
78 # before the other ones have finished, not all auxiliary files may
79 # be installed yet, thus some may not be distributed.
81 # Further, automake output should be stable.
83 # Generate expected output using the non-threaded code.
84 unset AUTOMAKE_JOBS ||
:
85 AUTOMAKE_run
0 --add-missing
87 Makefile_ins
=`find . -name Makefile.in`
88 for file in $Makefile_ins; do
95 for run
in 1 2 3 4 5 6 7; do
96 rm -f build-aux
/* sub
*/Makefile.
in
97 AUTOMAKE_run
0 --add-missing
99 for file in $Makefile_ins; do