tests: rename 'tests/' => 't/', '*.test' => '*.sh'
[platform/upstream/automake.git] / t / test-driver-trs-suffix-registered.sh
1 #! /bin/sh
2 # Copyright (C) 2011-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 # parallel-tests support: the following are registered with '.SUFFIXES':
18 #  - .log
19 #  - .trs (used by files that store test results and metadata)
20 #  - .test if $(TEST_EXTENSIONS) is not defined
21 #  - stuff in $(TEST_EXTENSIONS) otherwise
22
23 am_parallel_tests=yes
24 . ./defs || Exit 1
25
26 : > Makefile.am
27
28 cat > 1.am << 'END'
29 TESTS =
30 END
31
32 cat > 2.am << 'END'
33 TEST_EXTENSIONS = .SH .abcdef
34 TESTS =
35 END
36
37 : > test-driver
38
39 $ACLOCAL
40
41 $AUTOMAKE 1
42 $AUTOMAKE 2
43
44 sed -e 's/$/ /' 1.in > mk.1
45 sed -e 's/$/ /' 2.in > mk.2
46
47 grep '^\.SUFFIXES:' mk.1
48 grep '^\.SUFFIXES:' mk.2
49
50 for suf in test log trs; do
51   grep "^\\.SUFFIXES:.* \\.$suf " mk.1
52 done
53
54 for suf in SH abcdef log trs; do
55   grep "^\\.SUFFIXES:.* \\.$suf " mk.2
56 done
57
58 :