Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql/
Date: Mon, 19 Nov 2018 18:28:58
Message-Id: 1542652106.172eaac024b3fb861de05350ff994f12b8350448.whissi@gentoo
1 commit: 172eaac024b3fb861de05350ff994f12b8350448
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 19 18:28:14 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 19 18:28:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=172eaac0
7
8 dev-db/mysql: disable additional unstable tests
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-db/mysql/mysql-5.7.24.ebuild | 8 +++++++-
14 1 file changed, 7 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-db/mysql/mysql-5.7.24.ebuild b/dev-db/mysql/mysql-5.7.24.ebuild
17 index d79963ba242..7dd4cdbf432 100644
18 --- a/dev-db/mysql/mysql-5.7.24.ebuild
19 +++ b/dev-db/mysql/mysql-5.7.24.ebuild
20 @@ -545,10 +545,16 @@ src_test() {
21
22 # Unstable tests
23 # - main.xa_prepared_binlog_off: https://bugs.mysql.com/bug.php?id=83340
24 - for t in main.xa_prepared_binlog_off ; do
25 + # - rpl.rpl_non_direct_stm_mixing_engines: MDEV-14489
26 + for t in main.xa_prepared_binlog_off rpl.rpl_non_direct_stm_mixing_engines ; do
27 _disable_test "$t" "Unstable test"
28 done
29
30 + if ! use amd64 ; then
31 + # fixed in >=mysql-8 via commit 0a417e84
32 + _disable_test "gis.gis_bugs_crashes" "Unstable results on non-amd64 architectures due to floating-point operation"
33 + fi
34 +
35 if use numa && use kernel_linux ; then
36 # bug 584880
37 if ! linux_config_exists || ! linux_chkconfig_present NUMA ; then