source: vendor/automake/1.9.6/tests/python10.test

Last change on this file was 3086, checked in by bird, 18 years ago

automake 1.9.6

File size: 2.0 KB
Line 
1#! /bin/sh
2# Copyright (C) 2004 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
6# GNU Automake is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option)
9# any later version.
10#
11# GNU Automake is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with Automake; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19# Boston, MA 02110-1301, USA.
20
21# Test _PYTHON with conditionals.
22
23required=python
24. ./defs || exit 1
25
26set -e
27
28cat >>configure.in <<'EOF'
29AM_PATH_PYTHON
30AM_CONDITIONAL([ONE], [test "x$one" = x1])
31AC_OUTPUT
32EOF
33
34cat > Makefile.am <<'END'
35if ONE
36mydir=$(prefix)/my
37my_PYTHON = one.py
38else
39yourdir=$(prefix)/your
40your_PYTHON = two.py
41endif
42
43one.py:
44 echo 'def one(): return 1' >$@
45two.py:
46 echo 'def two(): return 1' >$@
47
48disttest: distdir
49 test -f $(distdir)/one.py
50 test -f $(distdir)/two.py
51END
52
53$ACLOCAL
54$AUTOCONF
55$AUTOMAKE --add-missing
56
57mkdir inst
58inst=`pwd`/inst
59mkdir build
60cd build
61../configure --prefix="$inst"
62$MAKE install
63test -f $inst/your/two.py
64test -f $inst/your/two.pyc
65test -f $inst/your/two.pyo
66test ! -f $inst/my/one.py
67test ! -f $inst/my/one.pyc
68test ! -f $inst/my/one.pyo
69$MAKE uninstall
70test ! -f $inst/your/two.py
71test ! -f $inst/your/two.pyc
72test ! -f $inst/your/two.pyo
73
74../configure --prefix="$inst" one=1
75$MAKE install
76test ! -f $inst/your/two.py
77test ! -f $inst/your/two.pyc
78test ! -f $inst/your/two.pyo
79test -f $inst/my/one.py
80test -f $inst/my/one.pyc
81test -f $inst/my/one.pyo
82$MAKE uninstall
83test ! -f $inst/my/one.py
84test ! -f $inst/my/one.pyc
85test ! -f $inst/my/one.pyo
86
87$MAKE disttest
Note: See TracBrowser for help on using the repository browser.