Skip to content

Commit

Permalink
net-libs/zeromq: Restore parallel test restriction
Browse files Browse the repository at this point in the history
The parallel test restriction (-j1) was lost when the ebuild was bumped to
EAPI=6 but is still required.

Gentoo-Bug: https://bugs.gentoo.org/597808

Package-Manager: portage-2.3.2
  • Loading branch information
Whissi committed Nov 4, 2016
1 parent 4b75914 commit 30624ab
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions net-libs/zeromq/zeromq-4.1.5-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ src_configure() {
econf "${myeconfargs[@]}"
}

src_test() {
# Restricting to one job because multiple tests are using the same port.
# Upstream knows the problem and says it doesn't support parallel test
# execution, see ${S}/INSTALL.
emake -j1 check
}

src_install() {
default
prune_libtool_files
Expand Down
7 changes: 7 additions & 0 deletions net-libs/zeromq/zeromq-4.1.6.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ src_configure() {
econf "${myeconfargs[@]}"
}

src_test() {
# Restricting to one job because multiple tests are using the same port.
# Upstream knows the problem and says it doesn't support parallel test
# execution, see ${S}/INSTALL.
emake -j1 check
}

src_install() {
default
prune_libtool_files
Expand Down

0 comments on commit 30624ab

Please sign in to comment.