125 lines
4.1 KiB
Bash
125 lines
4.1 KiB
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
|
|
MY_EXTRAS_VER="20170301-2020Z"
|
|
MY_PV="${PV//_alpha_pre/-m}"
|
|
MY_PV="${MY_PV//_/-}"
|
|
|
|
# Build type
|
|
BUILD="cmake"
|
|
|
|
inherit toolchain-funcs mysql-v2
|
|
# only to make repoman happy. it is really set in the eclass
|
|
IUSE="$IUSE"
|
|
|
|
# Define the mysql-extras source
|
|
EGIT_REPO_URI="git://anongit.gentoo.org/proj/mysql-extras.git"
|
|
|
|
# REMEMBER: also update eclass/mysql*.eclass before committing!
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
|
|
|
|
# When MY_EXTRAS is bumped, the index should be revised to exclude these.
|
|
EPATCH_EXCLUDE='20019_all_mysql-5.5-mtr-perl-deprecation.patch'
|
|
|
|
DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )"
|
|
RDEPEND="${RDEPEND}"
|
|
|
|
# Please do not add a naive src_unpack to this ebuild
|
|
# If you want to add a single patch, copy the ebuild to an overlay
|
|
# and create your own mysql-extras tarball, looking at 000_index.txt
|
|
|
|
# Official test instructions:
|
|
# USE='embedded extraengine perl ssl static-libs community' \
|
|
# FEATURES='test userpriv -usersandbox' \
|
|
# ebuild mysql-X.X.XX.ebuild \
|
|
# digest clean package
|
|
src_test() {
|
|
|
|
local TESTDIR="${BUILD_DIR}/mysql-test"
|
|
local retstatus_unit
|
|
local retstatus_tests
|
|
|
|
# Bug #213475 - MySQL _will_ object strenously if your machine is named
|
|
# localhost. Also causes weird failures.
|
|
[[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost"
|
|
|
|
if ! use "minimal" ; then
|
|
|
|
if [[ $UID -eq 0 ]]; then
|
|
die "Testing with FEATURES=-userpriv is no longer supported by upstream. Tests MUST be run as non-root."
|
|
fi
|
|
has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox"
|
|
|
|
einfo ">>> Test phase [test]: ${CATEGORY}/${PF}"
|
|
addpredict /this-dir-does-not-exist/t9.MYI
|
|
|
|
# Run CTest (test-units)
|
|
cmake-utils_src_test
|
|
retstatus_unit=$?
|
|
[[ $retstatus_unit -eq 0 ]] || eerror "test-unit failed"
|
|
|
|
# Ensure that parallel runs don't die
|
|
export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
|
|
# Enable parallel testing, auto will try to detect number of cores
|
|
# You may set this by hand.
|
|
# The default maximum is 8 unless MTR_MAX_PARALLEL is increased
|
|
export MTR_PARALLEL="${MTR_PARALLEL:-auto}"
|
|
|
|
# create directories because mysqladmin might right out of order
|
|
mkdir -p "${T}"/var-tests{,/log}
|
|
|
|
# create symlink for the tests to find mysql_tzinfo_to_sql
|
|
ln -s "${BUILD_DIR}/sql/mysql_tzinfo_to_sql" "${S}/sql/"
|
|
|
|
# These are failing in MySQL 5.5 for now and are believed to be
|
|
# false positives:
|
|
#
|
|
# main.information_schema, binlog.binlog_statement_insert_delayed,
|
|
# main.mysqld--help-notwin
|
|
# fails due to USE=-latin1 / utf8 default
|
|
#
|
|
# main.mysql_client_test:
|
|
# segfaults at random under Portage only, suspect resource limits.
|
|
#
|
|
# main.mysqlhotcopy_archive main.mysqlhotcopy_myisam
|
|
# fails due to bad cleanup of previous tests when run in parallel
|
|
# The tool is deprecated anyway
|
|
# Bug 532288
|
|
|
|
for t in main.mysql_client_test main.openssl_1 \
|
|
binlog.binlog_statement_insert_delayed main.information_schema \
|
|
main.mysqld--help-notwin main.mysqlhotcopy_archive main.mysqlhotcopy_myisam ; do
|
|
mysql-v2_disable_test "$t" "False positives in Gentoo"
|
|
done
|
|
|
|
# Run mysql tests
|
|
pushd "${TESTDIR}"
|
|
|
|
# run mysql-test tests
|
|
perl mysql-test-run.pl --force --vardir="${T}/var-tests" \
|
|
--testcase-timeout=30 --reorder
|
|
retstatus_tests=$?
|
|
[[ $retstatus_tests -eq 0 ]] || eerror "tests failed"
|
|
has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox"
|
|
|
|
popd
|
|
|
|
# Cleanup is important for these testcases.
|
|
pkill -9 -f "${S}/ndb" 2>/dev/null
|
|
pkill -9 -f "${S}/sql" 2>/dev/null
|
|
|
|
failures=""
|
|
[[ $retstatus_unit -eq 0 ]] || failures="${failures} test-unit"
|
|
[[ $retstatus_tests -eq 0 ]] || failures="${failures} tests"
|
|
has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox"
|
|
|
|
[[ -z "$failures" ]] || die "Test failures: $failures"
|
|
einfo "Tests successfully completed"
|
|
|
|
else
|
|
|
|
einfo "Skipping server tests due to minimal build."
|
|
fi
|
|
}
|