dev-libs/nanomsg: make tests sequential
authorSergei Trofimovich <slyfox@gentoo.org>
Wed, 26 Jul 2017 20:29:01 +0000 (21:29 +0100)
committerSergei Trofimovich <slyfox@gentoo.org>
Wed, 26 Jul 2017 20:29:14 +0000 (21:29 +0100)
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

index b2e2b2fb1d476d88d6271ac72a43b76ec3b5429b..5f9fa48d2632cd682aaa3b9f1936c858fbee84c4 100644 (file)
@@ -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
+}