doc: update Vala documentation
[automake.git] / t / test-driver-trs-suffix-registered.sh
blob00565a3c9aaa0334ad4d2e14d4cd9afafa960711
1 #! /bin/sh
2 # Copyright (C) 2011-2024 Free Software Foundation, Inc.
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.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
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
23 . test-init.sh
25 : > Makefile.am
27 cat > 1.am << 'END'
28 TESTS =
29 END
31 cat > 2.am << 'END'
32 TEST_EXTENSIONS = .SH .abcdef
33 TESTS =
34 END
36 : > test-driver
38 $ACLOCAL
40 $AUTOMAKE 1
41 $AUTOMAKE 2
43 sed -e 's/$/ /' 1.in > mk.1
44 sed -e 's/$/ /' 2.in > mk.2
46 grep '^\.SUFFIXES:' mk.1
47 grep '^\.SUFFIXES:' mk.2
49 for suf in test log trs; do
50 grep "^\\.SUFFIXES:.* \\.$suf " mk.1
51 done
53 for suf in SH abcdef log trs; do
54 grep "^\\.SUFFIXES:.* \\.$suf " mk.2
55 done