From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2EE9139694 for ; Wed, 26 Jul 2017 20:29:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D8031FC0E4; Wed, 26 Jul 2017 20:29:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1ADC11FC0E4 for ; Wed, 26 Jul 2017 20:29:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1030C3417A4 for ; Wed, 26 Jul 2017 20:29:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6701B3064 for ; Wed, 26 Jul 2017 20:29:18 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1501100954.aaf34a56f3ed4c5f5c6f0381b9e247cb65f1d77c.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nanomsg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/nanomsg/nanomsg-1.0.0.ebuild X-VCS-Directories: dev-libs/nanomsg/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: aaf34a56f3ed4c5f5c6f0381b9e247cb65f1d77c X-VCS-Branch: master Date: Wed, 26 Jul 2017 20:29:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 20674e3e-b124-4509-9b99-b6abacf1b8cd X-Archives-Hash: e2812024c1b2a3929c1363f34c0e6d7f commit: aaf34a56f3ed4c5f5c6f0381b9e247cb65f1d77c Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Jul 26 20:29:01 2017 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Jul 26 20:29:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaf34a56 dev-libs/nanomsg: make tests sequential Parallel tests overwrite one another and SIGSEGV ./test binary. Package-Manager: Portage-2.3.6, Repoman-2.3.3 dev-libs/nanomsg/nanomsg-1.0.0.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dev-libs/nanomsg/nanomsg-1.0.0.ebuild b/dev-libs/nanomsg/nanomsg-1.0.0.ebuild index b2e2b2fb1d4..5f9fa48d263 100644 --- a/dev-libs/nanomsg/nanomsg-1.0.0.ebuild +++ b/dev-libs/nanomsg/nanomsg-1.0.0.ebuild @@ -34,3 +34,12 @@ multilib_src_configure() { fi cmake-utils_src_configure } + +multilib_src_test() { + local myctestargs=( + # All tests overwrite same ./test binary + # That causes SIGSEGV when ran in parallel + -j1 + ) + cmake-utils_src_test +}