From: Zac Medico Date: Tue, 14 Feb 2012 00:41:38 +0000 (-0800) Subject: runtests.sh: test PyPy 1.8, and support prefix X-Git-Tag: v2.2.0_alpha87~43 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d806b859e0a7181c30bd13a7714cd47e5a582314;p=portage.git runtests.sh: test PyPy 1.8, and support prefix --- diff --git a/runtests.sh b/runtests.sh index 30ddeeffa..56aa2cc1e 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,8 +1,8 @@ #!/bin/bash -# Copyright 2010-2011 Gentoo Foundation +# Copyright 2010-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -PYTHON_VERSIONS="2.6 2.7 3.1 3.2 3.3" +PYTHON_VERSIONS="2.6 2.7 2.7-pypy-1.8 3.1 3.2 3.3" # has to be run from portage root dir cd "${0%/*}" || exit 1 @@ -47,11 +47,17 @@ done set -- "${unused_args[@]}" +eprefix=${PORTAGE_OVERRIDE_EPREFIX} exit_status="0" for version in ${PYTHON_VERSIONS}; do - if [[ -x /usr/bin/python${version} ]]; then + if [[ $version =~ ^([[:digit:]]+\.[[:digit:]]+)-pypy-([[:digit:]]+\.[[:digit:]]+)$ ]] ; then + executable=${eprefix}/usr/bin/pypy-c${BASH_REMATCH[2]} + else + executable=${eprefix}/usr/bin/python${version} + fi + if [[ -x "${executable}" ]]; then echo -e "${GOOD}Testing with Python ${version}...${NORMAL}" - if ! /usr/bin/python${version} -Wd pym/portage/tests/runTests "$@" ; then + if ! "${executable}" -Wd pym/portage/tests/runTests "$@" ; then echo -e "${BAD}Testing with Python ${version} failed${NORMAL}" exit_status="1" fi