68eaa4635db443dd275ccae3125a30f8f31a6796
[platform/upstream/automake.git] / tests / posixsubst-tests.test
1 #! /bin/sh
2 # Copyright (C) 2010, 2011 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 # Test that POSIX variable expansion `$(var:str=rpl)' works when used
18 # with the TESTS special variable.
19
20 . ./defs || Exit 1
21
22 cat >> configure.in << 'END'
23 AC_OUTPUT
24 END
25
26 cat > Makefile.am << 'END'
27 t1 = foo1 foo2
28 t2 = barx
29 t3 = bar2
30
31 foo2.test barz:
32         (echo '#!/bin/sh' && echo 'exit 0') > $@ && chmod a+x $@
33 CLEANFILES = foo2.test barz # For FreeBSD make.
34
35 # Also try an empty match suffix, to ensure that the `:=' in there is
36 # not confused by the parser with an unportable assignment operator.
37 TESTS = $(t1:=.test) $(t2:x=y) $(t3:2=z)
38
39 EXTRA_DIST = $(TESTS)
40 MOSTLYCLEANFILES = *.out
41 END
42
43 cat > foo1.test <<'END'
44 #!/bin/sh
45 touch foo1.out
46 test x"${TESTSUITE_OK-no}" = x"yes"
47 END
48 sed 's/foo1/bary/g' foo1.test > bary
49 chmod +x foo1.test bary
50
51 $ACLOCAL
52 $AUTOCONF
53 $AUTOMAKE -a
54
55 ./configure
56 $MAKE check >out 2>&1 && { cat out; Exit 1; }
57 cat out
58 ls -l
59 grep '^FAIL: foo1\.test *$' out
60 grep '^PASS: foo2\.test *$' out
61 grep '^FAIL: bary *$' out
62 grep '^PASS: barz *$' out
63 test -f foo1.out
64 test -f bary.out
65
66 TESTSUITE_OK=yes $MAKE distcheck
67
68 :