From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 56F0D13827E for ; Fri, 24 Jan 2014 13:48:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CF25E0AA4; Fri, 24 Jan 2014 13:48:00 +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 9BE33E0AA4 for ; Fri, 24 Jan 2014 13:47:59 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6568333F498 for ; Fri, 24 Jan 2014 13:47:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id E3FC5183B3 for ; Fri, 24 Jan 2014 13:47:56 +0000 (UTC) From: "Brian Evans" 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" Message-ID: <1390571268.24309f896d292a065184840d7af621c12cc14447.grknight.pub@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: dev-db/mysql/ X-VCS-Repository: proj/mysql X-VCS-Files: dev-db/mysql/mysql-5.6.15.ebuild dev-db/mysql/mysql-5.7.3_alpha_pre13.ebuild X-VCS-Directories: dev-db/mysql/ X-VCS-Committer: grknight.pub X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 24309f896d292a065184840d7af621c12cc14447 X-VCS-Branch: master Date: Fri, 24 Jan 2014 13:47:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4bec9d7b-4495-49c6-9fd6-7450efdb9ebe X-Archives-Hash: 5629cd6cd0700b4053a8155e2c99d4c7 commit: 24309f896d292a065184840d7af621c12cc14447 Author: Brian Evans tuffmail com> AuthorDate: Fri Jan 24 13:47:48 2014 +0000 Commit: Brian Evans lavabit com> CommitDate: Fri Jan 24 13:47:48 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=24309f89 [mysql] Increase suite timeout and open files for tests --- dev-db/mysql/mysql-5.6.15.ebuild | 6 +++++- dev-db/mysql/mysql-5.7.3_alpha_pre13.ebuild | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/dev-db/mysql/mysql-5.6.15.ebuild b/dev-db/mysql/mysql-5.6.15.ebuild index 0a0607d..d23c26a 100644 --- a/dev-db/mysql/mysql-5.6.15.ebuild +++ b/dev-db/mysql/mysql-5.6.15.ebuild @@ -98,8 +98,12 @@ src_test() { # Run mysql tests pushd "${TESTDIR}" + # Set file limits higher so tests run + ulimit -n 3000 + # run mysql-test tests - perl mysql-test-run.pl --force --vardir="${S}/mysql-test/var-tests" + perl mysql-test-run.pl --force --vardir="${S}/mysql-test/var-tests" \ + --suite-timeout=5000 retstatus_tests=$? [[ $retstatus_tests -eq 0 ]] || eerror "tests failed" has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox" diff --git a/dev-db/mysql/mysql-5.7.3_alpha_pre13.ebuild b/dev-db/mysql/mysql-5.7.3_alpha_pre13.ebuild index 7f2d236..9277e7a 100644 --- a/dev-db/mysql/mysql-5.7.3_alpha_pre13.ebuild +++ b/dev-db/mysql/mysql-5.7.3_alpha_pre13.ebuild @@ -98,8 +98,12 @@ src_test() { # Run mysql tests pushd "${TESTDIR}" + # Set file limits higher so tests run + ulimit -n 3000 + # run mysql-test tests - perl mysql-test-run.pl --force --vardir="${S}/mysql-test/var-tests" + perl mysql-test-run.pl --force --vardir="${S}/mysql-test/var-tests" \ + --suite-timeout=5000 retstatus_tests=$? [[ $retstatus_tests -eq 0 ]] || eerror "tests failed" has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox"