commit: c2f1593960a02f1e374e0751457be58cf66f8700 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Sat Jul 15 10:24:59 2017 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Sat Jul 15 10:25:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f15939
sci-libs/netcdf: make tests sequential, bug #621486 Parallel tests fail consistently on 4-core and 8-core systems. I suspect same temporary file reuse. Bug: https://bugs.gentoo.org/621486 Package-Manager: Portage-2.3.6, Repoman-2.3.2 sci-libs/netcdf/netcdf-4.4.1.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sci-libs/netcdf/netcdf-4.4.1.1.ebuild b/sci-libs/netcdf/netcdf-4.4.1.1.ebuild index 703031c4062..b295062f6d9 100644 --- a/sci-libs/netcdf/netcdf-4.4.1.1.ebuild +++ b/sci-libs/netcdf/netcdf-4.4.1.1.ebuild @@ -43,6 +43,11 @@ src_configure() { $(use_enable tools utilities) } +src_test() { + # fails parallel tests: bug #621486 + emake check -j1 +} + src_install() { default use examples && dodoc -r examples
