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 E437E1384B4 for ; Tue, 29 Sep 2015 19:16:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F0A721C06D; Tue, 29 Sep 2015 19:16:05 +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 A2C7C21C06D for ; Tue, 29 Sep 2015 19:15:59 +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 75831340B08 for ; Tue, 29 Sep 2015 19:15:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C876238 for ; Tue, 29 Sep 2015 19:15:57 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1443554117.a28f4bbacc31e96d1cefb399fd4bd0f36fa94044.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/strace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/strace/strace-4.10.ebuild dev-util/strace/strace-9999.ebuild X-VCS-Directories: dev-util/strace/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: a28f4bbacc31e96d1cefb399fd4bd0f36fa94044 X-VCS-Branch: master Date: Tue, 29 Sep 2015 19:15:57 +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: 85459b39-4dad-46d3-9b4c-266297e1b2a0 X-Archives-Hash: 91cbbf7233fad151e710f67eda95d37e commit: a28f4bbacc31e96d1cefb399fd4bd0f36fa94044 Author: Mike Frysinger gentoo org> AuthorDate: Tue Sep 29 19:05:31 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Sep 29 19:15:17 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a28f4bba dev-util/strace: skip flaky -k test #545812 This fails in upstream unmodified (and has been reported there), so just skip it in our builds. dev-util/strace/strace-4.10.ebuild | 3 +++ dev-util/strace/strace-9999.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dev-util/strace/strace-4.10.ebuild b/dev-util/strace/strace-4.10.ebuild index 289f2f7..dba2a1e 100644 --- a/dev-util/strace/strace-4.10.ebuild +++ b/dev-util/strace/strace-4.10.ebuild @@ -38,6 +38,9 @@ src_prepare() { use static && append-ldflags -static export ac_cv_header_libaio_h=$(usex aio) + + # Stub out the -k test since it's known to be flaky. #545812 + sed -i '1iexit 77' tests*/strace-k.test || die } src_install() { diff --git a/dev-util/strace/strace-9999.ebuild b/dev-util/strace/strace-9999.ebuild index a72fc13..8a1e0d6 100644 --- a/dev-util/strace/strace-9999.ebuild +++ b/dev-util/strace/strace-9999.ebuild @@ -39,6 +39,9 @@ src_prepare() { use static && append-ldflags -static export ac_cv_header_libaio_h=$(usex aio) + + # Stub out the -k test since it's known to be flaky. #545812 + sed -i '1iexit 77' tests*/strace-k.test || die } src_install() {