tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / test-driver-trs-suffix-registered.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 # 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 . test-init.sh
24
25 : > Makefile.am
26
27 cat > 1.am << 'END'
28 TESTS =
29 END
30
31 cat > 2.am << 'END'
32 TEST_EXTENSIONS = .SH .abcdef
33 TESTS =
34 END
35
36 : > test-driver
37
38 $ACLOCAL
39
40 $AUTOMAKE 1
41 $AUTOMAKE 2
42
43 sed -e 's/$/ /' 1.in > mk.1
44 sed -e 's/$/ /' 2.in > mk.2
45
46 grep '^\.SUFFIXES:' mk.1
47 grep '^\.SUFFIXES:' mk.2
48
49 for suf in test log trs; do
50   grep "^\\.SUFFIXES:.* \\.$suf " mk.1
51 done
52
53 for suf in SH abcdef log trs; do
54   grep "^\\.SUFFIXES:.* \\.$suf " mk.2
55 done
56
57 :