From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-823816-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 782C31384A7 for <garchives@archives.gentoo.org>; Wed, 29 Jul 2015 18:46:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AD6F1404A; Wed, 29 Jul 2015 18:46:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C088A1404A for <gentoo-commits@lists.gentoo.org>; Wed, 29 Jul 2015 18:46:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 088C434074E for <gentoo-commits@lists.gentoo.org>; Wed, 29 Jul 2015 18:46:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A4BE11D for <gentoo-commits@lists.gentoo.org>; Wed, 29 Jul 2015 18:46:14 +0000 (UTC) From: "Brian Evans" <grknight@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" <grknight@gentoo.org> Message-ID: <1438195760.15411faa29239bfb13a6f6760afd331663d4899e.grknight@gentoo> Subject: [gentoo-commits] proj/mysql-extras:master commit in: / X-VCS-Repository: proj/mysql-extras X-VCS-Files: 00000_index.txt 20019_all_mysql-5.5-mtr-perl-deprecation.patch X-VCS-Directories: / X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 15411faa29239bfb13a6f6760afd331663d4899e X-VCS-Branch: master Date: Wed, 29 Jul 2015 18:46:14 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d5394381-d26e-4263-9684-6cca7fa2d3bf X-Archives-Hash: d3f2406f8086bba6e61255a1bdf379f6 commit: 15411faa29239bfb13a6f6760afd331663d4899e Author: Brian Evans <grknight <AT> gentoo <DOT> org> AuthorDate: Wed Jul 29 18:49:20 2015 +0000 Commit: Brian Evans <grknight <AT> gentoo <DOT> org> CommitDate: Wed Jul 29 18:49:20 2015 +0000 URL: https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=15411faa Fix deprecated perl array defined syntax for test suite in 5.5 00000_index.txt | 6 ++++++ 20019_all_mysql-5.5-mtr-perl-deprecation.patch | 24 ++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/00000_index.txt b/00000_index.txt index 64dbfb3..ac9894a 100644 --- a/00000_index.txt +++ b/00000_index.txt @@ -1942,3 +1942,9 @@ @ver 5.06.25.00 to 5.06.99.99 @pn percona-server @@ Split building of client libraries, server and client tools + +@patch 20019_all_mysql-5.5-mtr-perl-deprecation.patch +@ver 5.05.45.00 to 5.05.99.99 +@pn mysql +@@ Fix deprecated perl array defined syntax on mtr test script +@@ Ported forward from mysql 5.6; Oracle bug 18145121 diff --git a/20019_all_mysql-5.5-mtr-perl-deprecation.patch b/20019_all_mysql-5.5-mtr-perl-deprecation.patch new file mode 100644 index 0000000..de8434c --- /dev/null +++ b/20019_all_mysql-5.5-mtr-perl-deprecation.patch @@ -0,0 +1,24 @@ +diff -aurN a/mysql-test/lib/mtr_cases.pm b/mysql-test/lib/mtr_cases.pm +--- a/mysql-test/lib/mtr_cases.pm 2015-06-25 09:44:36.000000000 -0400 ++++ b/mysql-test/lib/mtr_cases.pm 2015-07-29 14:44:05.964091000 -0400 +@@ -336,7 +336,7 @@ + # Build a hash of disabled testcases for this suite + # ---------------------------------------------------------------------- + my %disabled; +- my @disabled_collection= @{$opt_skip_test_list} if defined @{$opt_skip_test_list}; ++ my @disabled_collection= @{$opt_skip_test_list} if $opt_skip_test_list; + unshift (@disabled_collection, "$testdir/disabled.def"); + for my $skip (@disabled_collection) + { +diff -aurN a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl +--- a/mysql-test/mysql-test-run.pl 2015-06-25 09:44:36.000000000 -0400 ++++ b/mysql-test/mysql-test-run.pl 2015-07-29 14:34:54.796091000 -0400 +@@ -490,7 +490,7 @@ + } + } + +- if ( not defined @$completed ) { ++ if ( not @$completed ) { + mtr_error("Test suite aborted"); + } +