e4185fcd27716fb762e69c488b6422b7b369666c
[platform/upstream/automake.git] / t / python-too-old.sh
1 #! /bin/sh
2 # Copyright (C) 2003-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 detection of too old Python, also forcing the python to use.
18 # See also related test 't/python-am-path-missing.sh'.
19
20 am_create_testdir=empty
21 required=python
22 . ./defs || exit 1
23
24 py_too_old ()
25 {
26   ./configure ${1+"PYTHON=$1"} >stdout 2>stderr && {
27     cat stdout
28     cat stderr >&2
29     exit 1
30   }
31   cat stdout
32   cat stderr >&2
33   grep "whether $1 version is >= 9999\\.9\\.\\.\\. no *$" stdout
34   grep '[Pp]ython interpreter is too old' stderr
35 }
36
37 PYTHON=; unset PYTHON
38
39 cat > configure.ac <<END
40 AC_INIT([$me], [1.0])
41 # Hopefully the Python team will never release such a version.
42 AM_PATH_PYTHON([9999.9])
43 END
44
45 $ACLOCAL
46 $AUTOCONF
47
48 py_too_old python
49
50 mkdir bin
51 cat > bin/my-python << 'END'
52 #! /bin/sh
53 exec python ${1+"$@"}
54 END
55 chmod a+x bin/my-python
56 PATH=$(pwd)/bin$PATH_SEPARATOR$PATH
57
58 py_too_old my-python
59
60 :