1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.44.ebuild,v 1.5 2007/08/25 22:35:52 vapier Exp $
MY_EXTRAS_VER="20070710"
SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz"
inherit toolchain-funcs mysql
# REMEMBER: also update eclass/mysql*.eclass before committing!
KEYWORDS="alpha ~amd64 arm ~hppa ia64 ppc ~ppc64 s390 sh ~sparc ~sparc-fbsd x86 ~x86-fbsd"
# When MY_EXTRAS is bumped, the index should be revised to exclude these.
EPATCH_EXCLUDE=''
src_test() {
make check || die "make check failed"
if ! use "minimal" ; then
cd "${S}"
einfo ">>> Test phase [test]: ${CATEGORY}/${PF}"
local retstatus1
local retstatus2
local t
addpredict /this-dir-does-not-exist/t9.MYI
# mysqladmin start before dir creation
mkdir -p "${S}"/mysql-test/var{,/log}
# Ensure that parallel runs don't die
export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
if ! hasq "userpriv" ${FEATURES} ; then
# As of 5.0.38, these work with the sandbox
# but they break if you are root
for t in \
loaddata_autocom_ndb \
ndb_{alter_table{,2},autodiscover{,2,3},basic,bitfield,blob} \
ndb_{cache{,2},cache_multi{,2},charset,condition_pushdown,config} \
ndb_{database,gis,index,index_ordered,index_unique,insert,limit} \
ndb_{loaddatalocal,lock,minmax,multi,read_multi_range,rename,replace} \
ndb_{restore,subquery,transaction,trigger,truncate,types,update} \
ps_7ndb rpl_ndb_innodb_trans strict_autoinc_5ndb \
mysql_upgrade
do
mysql_disable_test "${t}" "fails as root"
done
fi
[ "${PV}" == "5.0.42" ] && \
mysql_disable_test "archive_gis" "Broken in 5.0.42"
[ "${PV}" == "5.0.44" ] && \
[ "$(tc-endian)" == "big" ] && \
mysql_disable_test "archive_gis" "Broken in 5.0.44 on big-endian boxes only"
# We run the test protocols seperately
make -j1 test-ns force=--force
retstatus1=$?
[[ $retstatus1 -eq 0 ]] || eerror "test-ns failed"
make -j1 test-ps force=--force
retstatus2=$?
[[ $retstatus2 -eq 0 ]] || eerror "test-ps failed"
# Cleanup is important for these testcases.
pkill -9 -f "${S}/ndb" 2>/dev/null
pkill -9 -f "${S}/sql" 2>/dev/null
[[ $retstatus1 -eq 0 ]] || die "test-ns failed"
[[ $retstatus2 -eq 0 ]] || die "test-ps failed"
else
einfo "Skipping server tests due to minimal build."
fi
}
|