From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2B6A1581C1 for ; Thu, 4 Jul 2024 00:49:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 296742BC032; Thu, 4 Jul 2024 00:49:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0595B2BC032 for ; Thu, 4 Jul 2024 00:49:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AFBDB34301D for ; Thu, 4 Jul 2024 00:49:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD5C91DBF for ; Thu, 4 Jul 2024 00:49:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1720053564.cf0ea1fc1f7b7258baffac031e5c0cfe72fc27d3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/coreutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/coreutils/coreutils-9.5.ebuild X-VCS-Directories: sys-apps/coreutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cf0ea1fc1f7b7258baffac031e5c0cfe72fc27d3 X-VCS-Branch: master Date: Thu, 4 Jul 2024 00:49:06 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1bbc6993-fcdd-43c1-a618-fd07aca79a52 X-Archives-Hash: 25e088edb7131ae15c2268ad93c1dd91 commit: cf0ea1fc1f7b7258baffac031e5c0cfe72fc27d3 Author: Sam James gentoo org> AuthorDate: Thu Jul 4 00:39:24 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 4 00:39:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf0ea1fc sys-apps/coreutils: properly skip dd no-allocate test It XPASSes sometimes but it's really unreliable under sandbox (even segfaults under sandbox when I looked at it last). Closes: https://bugs.gentoo.org/935367 Bug: https://bugs.gentoo.org/928486 Signed-off-by: Sam James gentoo.org> sys-apps/coreutils/coreutils-9.5.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sys-apps/coreutils/coreutils-9.5.ebuild b/sys-apps/coreutils/coreutils-9.5.ebuild index 3e451f36d7cb..16a041e4cbde 100644 --- a/sys-apps/coreutils/coreutils-9.5.ebuild +++ b/sys-apps/coreutils/coreutils-9.5.ebuild @@ -224,9 +224,6 @@ src_test() { local -x gl_public_submodule_commit= local xfail_tests=( - # bug #629660 - tests/dd/no-allocate.sh - # bug #675802 tests/env/env-S tests/env/env-S.pl @@ -245,6 +242,12 @@ src_test() { #tests/touch/not-owner.sh ) + # This test is flaky (bug #629660, bug #935367). + cat > tests/dd/no-allocate.sh <<-EOF || die + #!/bin/sh + exit 77; + EOF + # This test is flaky (bug #910640). cat > tests/tty/tty-eof.pl <<-EOF || die #!/usr/bin/perl