Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sandbox/
Date: Thu, 28 Oct 2021 07:36:51
Message-Id: 1635406598.2d9bb3878d6e15bd938ee8bd9db4609f308e2e89.vapier@gentoo
1 commit: 2d9bb3878d6e15bd938ee8bd9db4609f308e2e89
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 28 07:35:03 2021 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 28 07:36:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9bb387
7
8 sys-apps/sandbox: drop -j1 test compile workaround
9
10 The make fd leakage workaround was added to sandbox directly, so
11 drop it from newer ebuilds so we can compile tests in parallel.
12
13 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
14
15 sys-apps/sandbox/sandbox-2.26.ebuild | 4 +---
16 sys-apps/sandbox/sandbox-2.27.ebuild | 4 +---
17 2 files changed, 2 insertions(+), 6 deletions(-)
18
19 diff --git a/sys-apps/sandbox/sandbox-2.26.ebuild b/sys-apps/sandbox/sandbox-2.26.ebuild
20 index 5203f1537c2..414c2576026 100644
21 --- a/sys-apps/sandbox/sandbox-2.26.ebuild
22 +++ b/sys-apps/sandbox/sandbox-2.26.ebuild
23 @@ -42,9 +42,7 @@ multilib_src_configure() {
24
25 multilib_src_test() {
26 # Default sandbox build will run with --jobs set to # cpus.
27 - # -j1 to prevent test faiures caused by file descriptor
28 - # injection GNU make does.
29 - emake -j1 check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)"
30 + emake check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)"
31 }
32
33 multilib_src_install_all() {
34
35 diff --git a/sys-apps/sandbox/sandbox-2.27.ebuild b/sys-apps/sandbox/sandbox-2.27.ebuild
36 index ed70783105b..83e90898881 100644
37 --- a/sys-apps/sandbox/sandbox-2.27.ebuild
38 +++ b/sys-apps/sandbox/sandbox-2.27.ebuild
39 @@ -46,9 +46,7 @@ multilib_src_configure() {
40
41 multilib_src_test() {
42 # Default sandbox build will run with --jobs set to # cpus.
43 - # -j1 to prevent test faiures caused by file descriptor
44 - # injection GNU make does.
45 - emake -j1 check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)"
46 + emake check TESTSUITEFLAGS="--jobs=$(makeopts_jobs)"
47 }
48
49 multilib_src_install_all() {