diff options
author | Kent Fredric <kentnl@gentoo.org> | 2019-01-11 23:00:22 +1300 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2019-01-11 23:03:03 +1300 |
commit | da0ca02d4d009136cf90dacb4c9fa8d07c41df28 (patch) | |
tree | 18157bcc3f6aca95113047ef2ffaa464841d014f /dev-perl/DBI | |
parent | media-libs/libpng: Removed old. (diff) | |
download | gentoo-da0ca02d4d009136cf90dacb4c9fa8d07c41df28.tar.gz gentoo-da0ca02d4d009136cf90dacb4c9fa8d07c41df28.tar.bz2 gentoo-da0ca02d4d009136cf90dacb4c9fa8d07c41df28.zip |
dev-perl/DBI: Workaround test failures with -jx w/ x > 70 bug #675164
Bug: https://bugs.gentoo.org/675164
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/DBI')
-rw-r--r-- | dev-perl/DBI/DBI-1.637.0.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dev-perl/DBI/DBI-1.637.0.ebuild b/dev-perl/DBI/DBI-1.637.0.ebuild index 70e87656bcea..1676a747a16d 100644 --- a/dev-perl/DBI/DBI-1.637.0.ebuild +++ b/dev-perl/DBI/DBI-1.637.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -27,6 +27,10 @@ DEPEND="${RDEPEND} ) " src_test() { + if [[ $(makeopts_jobs) -gt 70 ]]; then + einfo "Reducing jobs to 70. Bug: https://bugs.gentoo.org/675164" + MAKEOPTS="${MAKEOPTS} -j70"; + fi perl_rm_files t/pod-coverage.t t/pod.t perl-module_src_test } |