diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-03-16 07:29:11 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-03-16 07:29:11 +0000 |
commit | f2e643f590ab184c97ac7b9ee53a9a071474243b (patch) | |
tree | d6f84a628cb8d0130a99a87d0623138251468611 /dev-python/ply | |
parent | Bump for #407413 (diff) | |
download | gentoo-2-f2e643f590ab184c97ac7b9ee53a9a071474243b.tar.gz gentoo-2-f2e643f590ab184c97ac7b9ee53a9a071474243b.tar.bz2 gentoo-2-f2e643f590ab184c97ac7b9ee53a9a071474243b.zip |
Test fix for #408145
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/ply')
-rw-r--r-- | dev-python/ply/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/ply/ply-3.4.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-python/ply/ChangeLog b/dev-python/ply/ChangeLog index 097051a0fd65..5ee6b6ba5448 100644 --- a/dev-python/ply/ChangeLog +++ b/dev-python/ply/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/ply # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v 1.15 2012/02/17 19:53:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v 1.16 2012/03/16 07:29:11 patrick Exp $ + + 16 Mar 2012; Patrick Lauer <patrick@gentoo.org> ply-3.4.ebuild: + Test fix for #408145 17 Feb 2012; Agostino Sarubbo <ago@gentoo.org> ply-3.4.ebuild: Stable for amd64, wrt bug #403759 diff --git a/dev-python/ply/ply-3.4.ebuild b/dev-python/ply/ply-3.4.ebuild index 3054459da6e8..fecddcc7dcc7 100644 --- a/dev-python/ply/ply-3.4.ebuild +++ b/dev-python/ply/ply-3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ply-3.4.ebuild,v 1.2 2012/02/17 19:53:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ply-3.4.ebuild,v 1.3 2012/03/16 07:29:11 patrick Exp $ EAPI="3" SUPPORT_PYTHON_ABIS="1" @@ -31,7 +31,7 @@ src_test() { for test in testlex.py testyacc.py; do einfo "Running ${test}..." - if ! "$(PYTHON)" testlex.py; then + if ! "$(PYTHON)" ${test}; then ewarn "${test} failed with $(python_get_implementation) $(python_get_version)" exit_status="1" fi |