tests: rename 'tests/' => 't/', '*.test' => '*.sh'
[platform/upstream/automake.git] / t / python-pr10995.sh
1 #! /bin/sh
2 # Copyright (C) 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 # Test automake bug#10995: am__py_compile doesn't get correctly defined
18 # when there a 'noinst_PYTHON' declaration precedes a 'foo_PYTHON'
19 # declaration.
20
21 required=python
22 . ./defs || Exit 1
23
24 set -e
25
26 cat >> configure.ac <<'EOF'
27 AM_PATH_PYTHON
28 AC_OUTPUT
29 EOF
30
31 cat > Makefile.am <<'END'
32 yesinstdir = $(prefix)/py
33 noinst_PYTHON = no.py
34 yesinst_PYTHON = yes.py
35 disttest: distdir
36         test -f $(distdir)/no.py
37         test -f $(distdir)/yes.py
38 END
39
40 echo 'def foo(): return 1' > yes.py
41 # no.py shouldn't be byte-compiled, so lets make it syntactically invalid.
42 echo 'if' > no.py
43
44 $ACLOCAL
45 $AUTOCONF
46 $AUTOMAKE --add-missing
47 test -f py-compile
48
49 inst=`pwd`/inst
50
51 ./configure --prefix="$inst"
52 $MAKE install
53 test -f "$inst/py/yes.py"
54 test -f "$inst/py/yes.pyc"
55 test ! -f "$inst/py/no.py"
56 test ! -f "$inst/py/no.pyc"
57
58 $MAKE disttest
59
60 :