Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/openssl/
Date: Fri, 06 May 2022 05:43:23
Message-Id: 1651815785.d653416679bc345f411f249405f999b4439d1411.sam@gentoo
1 commit: d653416679bc345f411f249405f999b4439d1411
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 6 05:31:32 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 6 05:43:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6534166
7
8 dev-libs/openssl: run tests for 3.x in parallel
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-libs/openssl/openssl-3.0.3.ebuild | 7 +++++--
13 1 file changed, 5 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-libs/openssl/openssl-3.0.3.ebuild b/dev-libs/openssl/openssl-3.0.3.ebuild
16 index 2ef0aaed3200..22459db77bf3 100644
17 --- a/dev-libs/openssl/openssl-3.0.3.ebuild
18 +++ b/dev-libs/openssl/openssl-3.0.3.ebuild
19 @@ -3,7 +3,7 @@
20
21 EAPI="7"
22
23 -inherit flag-o-matic linux-info toolchain-funcs multilib-minimal verify-sig
24 +inherit flag-o-matic linux-info toolchain-funcs multilib-minimal multiprocessing verify-sig
25
26 MY_P=${P/_/-}
27
28 @@ -219,11 +219,14 @@ multilib_src_compile() {
29 # depend is needed to use $confopts; it also doesn't matter
30 # that it's -j1 as the code itself serializes subdirs
31 emake -j1 depend
32 +
33 emake all
34 }
35
36 multilib_src_test() {
37 - emake -j1 test
38 + # VFP = show subtests verbosely and show failed tests verbosely
39 + # Normal V=1 would show everything verbosely but this slows things down.
40 + emake HARNESS_JOBS="$(makeopts_jobs)" VFP=1 test
41 }
42
43 multilib_src_install() {