Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Sun, 01 May 2011 14:20:46
Message-Id: 92d5eba065f12c38cdbb2e24e13ee3b123f92245.zmedico@gentoo
1 commit: 92d5eba065f12c38cdbb2e24e13ee3b123f92245
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 1 14:18:42 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun May 1 14:20:04 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=92d5eba0
7
8 runtests.sh: propagate arguments to runTests
9
10 ---
11 runtests.sh | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/runtests.sh b/runtests.sh
15 index 6c00ce5..668701c 100755
16 --- a/runtests.sh
17 +++ b/runtests.sh
18 @@ -26,7 +26,7 @@ exit_status="0"
19 for version in ${PYTHON_VERSIONS}; do
20 if [[ -x /usr/bin/python${version} ]]; then
21 echo -e "${GOOD}Testing with Python ${version}...${NORMAL}"
22 - if ! /usr/bin/python${version} pym/portage/tests/runTests; then
23 + if ! /usr/bin/python${version} pym/portage/tests/runTests "$@" ; then
24 echo -e "${BAD}Testing with Python ${version} failed${NORMAL}"
25 exit_status="1"
26 fi