Merge branch 'branch-1.13.2' into maint
[platform/upstream/automake.git] / t / ax / testsuite-summary-checks.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2013 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 the testsuite summary with the parallel test harness.  This
18 # script is meant to be sourced by other test script, so that it can
19 # be used to check different scenarios (colorized and non-colorized
20 # testsuite output, packages with and without bug-report addresses,
21 # testsuites in subdirectories, ...)
22
23 . test-init.sh
24
25 case $use_colors in
26   yes)
27     AM_COLOR_TESTS=always; export AM_COLOR_TESTS
28     # Forced colorization should take place also with non-ANSI
29     # terminals; hence this setting.
30     TERM=dumb; export TERM
31     ;;
32   no)
33     ;;
34   *)
35     fatal_ "invalid use_colors='$use_colors'";;
36 esac
37
38 cat > configure.ac <<END
39 AC_INIT([GNU AutoFoo], [7.1], [bug-automake@gnu.org])
40 AM_INIT_AUTOMAKE
41 AC_CONFIG_FILES([Makefile])
42 AC_OUTPUT
43 END
44
45 cat > Makefile.am <<'END'
46 TEST_EXTENSIONS = .t
47 T_LOG_COMPILER = $(SHELL) $(srcdir)/log-compiler
48 ## Will be defined at runtime.
49 TESTS =
50 $(TESTS):
51 END
52
53 cat > log-compiler <<'END'
54 #!/bin/sh
55 case "$1" in
56   pass*|*/pass*|xpass*|*/xpass*) exit 0;;
57   fail*|*/fail*|xfail*|*/xfail*) exit 1;;
58   skip*|*/skip*) exit 77;;
59   error*|/error*) exit 99;;
60   copy*|*/copy*) cat "$1";;
61   *) exit 99;;
62 esac
63 END
64
65 # Quite complexish, but allow the tests in client scripts to be written
66 # in a "data-driven fashion".
67 do_check ()
68 {
69   cat > summary.exp
70   expect_failure=false
71   xfail_tests=''
72   tests="TESTS='$*'"
73   for t in $*; do
74     case $t in fail*|xpass*|error*) expect_failure=:;; esac
75     case $t in xfail*|xpass*) xfail_tests="$xfail_tests $t";; esac
76   done
77   test -z "$xfail_tests" || xfail_tests="XFAIL_TESTS='$xfail_tests'"
78   st=0
79   eval "env $tests $xfail_tests \$MAKE -e check > stdout || st=\$?"
80   cat stdout
81   if $expect_failure; then
82     test $st -gt 0 || exit 1
83   else
84     test $st -eq 0 || exit 1
85   fi
86   $PERL "$am_testaux_srcdir"/extract-testsuite-summary.pl stdout >summary.got \
87    || fatal_ "cannot extract testsuite summary"
88   cat summary.exp
89   cat summary.got
90   if test $use_colors = yes; then
91     # Use cmp, not diff, because the files might contain binary data.
92     compare=cmp
93   else
94     compare=diff
95   fi
96   $compare summary.exp summary.got || exit 1
97 }
98
99 br='============================================================================'
100
101 $ACLOCAL
102 $AUTOCONF
103 $AUTOMAKE --add-missing
104
105 :