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 92AF8158086 for ; Thu, 28 Oct 2021 07:36:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD15FE087F; Thu, 28 Oct 2021 07:36:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 99D15E087F for ; Thu, 28 Oct 2021 07:36:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 916453439DF for ; Thu, 28 Oct 2021 07:36:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18F76162 for ; Thu, 28 Oct 2021 07:36:48 +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: <1635406598.2d9bb3878d6e15bd938ee8bd9db4609f308e2e89.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sandbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/sandbox/sandbox-2.26.ebuild sys-apps/sandbox/sandbox-2.27.ebuild X-VCS-Directories: sys-apps/sandbox/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 2d9bb3878d6e15bd938ee8bd9db4609f308e2e89 X-VCS-Branch: master Date: Thu, 28 Oct 2021 07:36:48 +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: 671b3e4c-8fe0-4ea0-8dee-b6eab0fd08b5 X-Archives-Hash: ec70fe8ae0c6acba8199630987a69c97 commit: 2d9bb3878d6e15bd938ee8bd9db4609f308e2e89 Author: Mike Frysinger gentoo org> AuthorDate: Thu Oct 28 07:35:03 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Oct 28 07:36:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9bb387 sys-apps/sandbox: drop -j1 test compile workaround The make fd leakage workaround was added to sandbox directly, so drop it from newer ebuilds so we can compile tests in parallel. Signed-off-by: Mike Frysinger gentoo.org> sys-apps/sandbox/sandbox-2.26.ebuild | 4 +--- sys-apps/sandbox/sandbox-2.27.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/sys-apps/sandbox/sandbox-2.26.ebuild b/sys-apps/sandbox/sandbox-2.26.ebuild index 5203f1537c2..414c2576026 100644 --- a/sys-apps/sandbox/sandbox-2.26.ebuild +++ b/sys-apps/sandbox/sandbox-2.26.ebuild @@ -42,9 +42,7 @@ multilib_src_configure() { multilib_src_test() { # Default sandbox build will run with --jobs set to # cpus. - # -j1 to prevent test faiures caused by file descriptor - # injection GNU make does. - emake -j1 check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)" + emake check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)" } multilib_src_install_all() { diff --git a/sys-apps/sandbox/sandbox-2.27.ebuild b/sys-apps/sandbox/sandbox-2.27.ebuild index ed70783105b..83e90898881 100644 --- a/sys-apps/sandbox/sandbox-2.27.ebuild +++ b/sys-apps/sandbox/sandbox-2.27.ebuild @@ -46,9 +46,7 @@ multilib_src_configure() { multilib_src_test() { # Default sandbox build will run with --jobs set to # cpus. - # -j1 to prevent test faiures caused by file descriptor - # injection GNU make does. - emake -j1 check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)" + emake check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)" } multilib_src_install_all() {