summaryrefslogtreecommitdiff
path: root/t/parallel-tests-concatenated-suffix.sh
blob: bbf8eaa7f6caedf51fd5bd73a9d329aaf4715108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#! /bin/sh
# Copyright (C) 2012-2015 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# The parallel-tests driver should be able to cope with test scripts
# whose names end with several concatenated suffixes.

. test-init.sh

cat >> configure.ac << 'END'
AC_OUTPUT
END

tests='foo.sh foo.t.sh foo.sh.t foo.x.x foo.x.t.sh foo.t.x.sh foo.sh.t.x'

for t in $tests; do
  (echo '#!/bin/sh' && echo 'echo == /$0 ==') > $t
  chmod a+x $t
done

cat > Makefile.am <<END
TEST_EXTENSIONS = .t .sh .x
TESTS = $tests
END

$ACLOCAL
$AUTOCONF
$AUTOMAKE -a

./configure

for j in '' -j4; do

  run_make -O $j check
  count_test_results total=7 pass=7 fail=0 skip=0 xfail=0 xpass=0 error=0
  for t in $tests; do grep "^PASS: $t *$" stdout; done

  grep '== .*/foo\.sh =='       foo.log
  grep '== .*/foo\.t\.sh =='    foo.t.log
  grep '== .*/foo\.sh\.t =='    foo.sh.log
  grep '== .*/foo\.x\.x =='     foo.x.log
  grep '== .*/foo\.x\.t\.sh ==' foo.x.t.log
  grep '== .*/foo\.t\.x\.sh ==' foo.t.x.log
  grep '== .*/foo\.sh\.t\.x ==' foo.sh.t.log

  $MAKE $j clean
  test ! -f foo.log
  test ! -f foo.t.log
  test ! -f foo.sh.log
  test ! -f foo.x.log
  test ! -f foo.x.t.log
  test ! -f foo.t.x.log
  test ! -f foo.sh.t.log

done

: