diff options
author | Francesco Riosa <vivo@gentoo.org> | 2005-10-18 16:14:01 +0000 |
---|---|---|
committer | Francesco Riosa <vivo@gentoo.org> | 2005-10-18 16:14:01 +0000 |
commit | fc220cd43373f255219585a7e5f92d97dbd969d5 (patch) | |
tree | 0e88563d45cd859744fa77c92dc8935a44203354 /dev-db/mysql/mysql-4.1.14.ebuild | |
parent | Version bump. Bug # 109598. (diff) | |
download | gentoo-2-fc220cd43373f255219585a7e5f92d97dbd969d5.tar.gz gentoo-2-fc220cd43373f255219585a7e5f92d97dbd969d5.tar.bz2 gentoo-2-fc220cd43373f255219585a7e5f92d97dbd969d5.zip |
Addressed problem in src_test() (reverted to bash mysql-test program)
(Portage version: 2.0.53_rc5)
Diffstat (limited to 'dev-db/mysql/mysql-4.1.14.ebuild')
-rw-r--r-- | dev-db/mysql/mysql-4.1.14.ebuild | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/dev-db/mysql/mysql-4.1.14.ebuild b/dev-db/mysql/mysql-4.1.14.ebuild index d1aa2ef7ad8a..4d958ff11e26 100644 --- a/dev-db/mysql/mysql-4.1.14.ebuild +++ b/dev-db/mysql/mysql-4.1.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.1.14.ebuild,v 1.10 2005/10/17 13:49:25 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.1.14.ebuild,v 1.11 2005/10/18 16:14:01 vivo Exp $ inherit eutils gnuconfig flag-o-matic versionator @@ -352,10 +352,18 @@ src_test() { local retstatus addpredict /this-dir-does-not-exist/t9.MYI - version_is_at_least "5.0.6_beta" \ - && make test-force \ - || make test + # Temporary removed, 4.1.14 use mysql-test-run.pl instead + # of mysql-test-run, thus failing on test that should be + # skipped. + #version_is_at_least "5.0.6_beta" \ + #&& make test-force \ + #|| make test + + # <replace me whenever possible> + cd mysql-test; ./mysql-test-run && ./mysql-test-run --ps-protocol retstatus=$? + cd .. + # </replace me whenever possible> # to be sure ;) pkill -9 -f "${S}/ndb" 2>/dev/null |