tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / python.sh
1 #! /bin/sh
2 # Copyright (C) 2001-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 # Test to make sure py_compile and am__py_compile are correctly defined.
18
19 . test-init.sh
20
21 echo 'AM_PATH_PYTHON' >> configure.ac
22
23 cat > Makefile.am << 'END'
24 python_PYTHON = foo.py
25 END
26
27 cat > Makefile2.am << 'END'
28 python_PYTHON = a.py
29 nodist_python_PYTHON = b.py
30 nobase_python_PYTHON = x/c.py
31 mydir = ${prefix}
32 my_PYTHON = d.py
33 END
34
35 # For automake bug#10995.
36 cat > Makefile3.am << 'END'
37 noinst_PYTHON = un.py
38 python_PYTHON = in.py
39 END
40
41 $ACLOCAL
42
43 AUTOMAKE_fails
44 grep '^Makefile\.am:1:.* required file.*py-compile' stderr
45
46 $AUTOMAKE -a
47 grep '^py_compile *=' Makefile.in
48 test -f py-compile
49
50 $AUTOMAKE Makefile2
51 $AUTOMAKE Makefile3
52
53 grep "py" Makefile.in Makefile2.in Makefile3.in # For debugging.
54
55 for f in Makefile.in Makefile2.in Makefile3.in; do
56   test $(grep -c '^py_compile =' $f) -eq 1
57   test $(grep -c '^am__py_compile =' $f) -eq 1
58 done
59
60 :