Skip to content

Commit

Permalink
dev-libs/libical: Don't execute tests in parallel
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/642958
Package-Manager: Portage-2.3.19, Repoman-2.3.6
  • Loading branch information
a17r committed Jan 6, 2018
1 parent 857c254 commit fc2d99a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion dev-libs/libical/libical-2.0.0-r2.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
Expand Down Expand Up @@ -38,6 +38,11 @@ src_configure() {
cmake-utils_src_configure
}

src_test() {
local myctestargs=( -j1 )
cmake-utils_src_test
}

src_install() {
cmake-utils_src_install

Expand Down
7 changes: 6 additions & 1 deletion dev-libs/libical/libical-2.0.0-r3.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
Expand Down Expand Up @@ -44,6 +44,11 @@ src_configure() {
cmake-utils_src_configure
}

src_test() {
local myctestargs=( -j1 )
cmake-utils_src_test
}

src_install() {
cmake-utils_src_install

Expand Down

0 comments on commit fc2d99a

Please sign in to comment.