tests: avoid a spurious failure on MSYS
[platform/upstream/automake.git] / t / parallel-tests-cmdline-override.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 that we can use indirections when overriding TESTS and
18 # TEST_LOGS from the command line.
19
20 . test-init.sh
21
22 cat >> configure.ac << 'END'
23 AC_OUTPUT
24 END
25
26 cat > Makefile.am << 'END'
27 TEST_EXTENSIONS = .test .t
28 TEST_LOG_COMPILER = cat
29 T_LOG_COMPILER = cat
30 TESTS = bad.test
31 var1 = b.test $(var2)
32 var2 = c.test
33 var3 = d.d
34 var4 = e
35 END
36
37 $ACLOCAL
38 $AUTOCONF
39 $AUTOMAKE -a
40
41 ./configure
42 rm -f config.log # Do not create false positives below.
43
44 cat > exp-log <<'END'
45 a.log
46 b.log
47 c.log
48 d.log
49 e.log
50 test-suite.log
51 END
52
53 cat > exp-out <<'END'
54 PASS: a.t
55 PASS: b.test
56 PASS: c.test
57 PASS: d.t
58 PASS: e.test
59 END
60
61 do_check ()
62 {
63   run_make -O -- "$@" check
64   grep '^PASS:' stdout | LC_ALL=C sort > got-out
65   cat got-out
66   ls . | grep '\.log$' | LC_ALL=C sort > got-log
67   cat got-log
68   st=0
69   diff exp-out got-out || st=1
70   diff exp-log got-log || st=1
71   return $st
72 }
73
74 tests='a.t $(var1) $(var3:.d=.t) $(var4:=.test)'
75 test_logs='a.log $(var1:.test=.log) $(var3:.d=.log) $(var4:=.log)'
76
77 touch a.t b.test c.test d.t e.test
78
79 do_check TESTS="$tests"
80 do_check TEST_LOGS="$test_logs"
81
82 :