6c9e4cba98f1ee0e4d337819ef2b83ba2078d66a
[platform/upstream/automake.git] / t / parallel-tests-recheck-depends-on-all.sh
1 #! /bin/sh
2 # Copyright (C) 2012 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 # The parallel-tests 'recheck' target must depend on the 'all' target.
18 # See automake bug#11252.
19
20 am_parallel_tests=yes
21 required='cc native'
22 . ./defs || Exit 1
23
24 cat >> configure.ac << 'END'
25 AC_PROG_CC
26 AC_OUTPUT
27 END
28
29 cat > Makefile.am << 'END'
30 all-local:
31         test ! -f status || echo okokok > status
32 bin_PROGRAMS = foo
33 TESTS = a.test b.test c.test
34 END
35
36 cat > foo.c << 'END'
37 #include <stdio.h>
38 int main (void)
39 {
40   printf ("failure :-(" "\n");
41   return 1;
42 }
43 END
44
45 cat > a.test << 'END'
46 #!/bin/sh
47 exit 0
48 END
49
50 cat > b.test << 'END'
51 #!/bin/sh
52 grep okokok status
53 END
54
55 cat > c.test << 'END'
56 #!/bin/sh
57 ./foo
58 END
59
60 chmod a+x *.test
61
62 $ACLOCAL
63 $AUTOCONF
64 $AUTOMAKE -a
65 ./configure
66
67 $MAKE check >stdout && { cat stdout; Exit 1; }
68 cat stdout
69 count_test_results total=3 pass=1 fail=2 skip=0 xfail=0 xpass=0 error=0
70 test ! -f status
71
72 $sleep
73 : > status
74 cat > foo.c << 'END'
75 #include <stdio.h>
76 int main (void)
77 {
78   printf ("success :-)" "\n");
79   return 0;
80 }
81 END
82
83 $MAKE recheck >stdout || { cat stdout; Exit 1; }
84 cat stdout
85 count_test_results total=2 pass=2 fail=0 skip=0 xfail=0 xpass=0 error=0
86 grep '^PASS: b\.test$' stdout
87 grep '^PASS: c\.test$' stdout
88
89 $MAKE recheck >stdout || { cat stdout; Exit 1; }
90 cat stdout
91 count_test_results total=0 pass=0 fail=0 skip=0 xfail=0 xpass=0 error=0
92
93 :