From: Zac Medico Date: Sun, 1 May 2011 14:18:42 +0000 (-0700) Subject: runtests.sh: propagate arguments to runTests X-Git-Tag: v2.1.9.47~15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6bad76c08983995f2990341ced8af9a322d2913b;p=portage.git runtests.sh: propagate arguments to runTests --- diff --git a/runtests.sh b/runtests.sh index 6c00ce530..668701cc6 100755 --- a/runtests.sh +++ b/runtests.sh @@ -26,7 +26,7 @@ exit_status="0" for version in ${PYTHON_VERSIONS}; do if [[ -x /usr/bin/python${version} ]]; then echo -e "${GOOD}Testing with Python ${version}...${NORMAL}" - if ! /usr/bin/python${version} pym/portage/tests/runTests; then + if ! /usr/bin/python${version} pym/portage/tests/runTests "$@" ; then echo -e "${BAD}Testing with Python ${version} failed${NORMAL}" exit_status="1" fi