Merge branch 'master' into test-protocols
[platform/upstream/automake.git] / tests / parallel-tests3.test
1 #! /bin/sh
2 # Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Check parallel-tests features:
18 # - concurrent parallel execution
19
20 parallel_tests=yes
21 required=GNUmake
22 . ./defs || Exit 1
23
24 # This test does not work well if $MAKE contains -j.
25 case $MAKE in
26 *\ -j*) Exit 77 ;;
27 esac
28
29 cat >> configure.in << 'END'
30 AC_OUTPUT
31 END
32
33 cat > Makefile.am << 'END'
34 TESTS =
35 END
36
37 for i in 1 2 3 4 5 6 7 8; do
38   echo "TESTS += foo$i.test" >> Makefile.am
39   cat >foo$i.test <<'END'
40 #! /bin/sh
41 echo "this is $0"
42 # hack around maintainer-check check:
43 sleep='sleep '1
44 $sleep
45 exit 0
46 END
47   chmod a+x foo$i.test
48 done
49
50 $ACLOCAL
51 $AUTOCONF
52 $AUTOMAKE -a
53
54 for build in serial parallel; do
55   mkdir $build
56   cd $build
57   ../configure
58   $MAKE
59   cd ..
60 done
61
62 cd serial
63 $MAKE -j1 check &
64 cd ../parallel
65 $sleep
66 # Use append mode here to avoid dropping output.
67 # Yes, this actually happens.
68 : >stdout
69 $MAKE -j4 check >> stdout
70 cd ..
71 kill $!
72 cat parallel/stdout
73 test `grep -c '^PASS:' parallel/stdout` -eq 8
74
75 # Wait long enough so that there are no open files any more
76 # when the post-test cleanup runs.
77 while test ! -f serial/test-suite.log
78 do
79   $sleep
80 done
81 $sleep
82 :