diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2017-07-15 11:24:59 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2017-07-15 11:25:10 +0100 |
commit | c2f1593960a02f1e374e0751457be58cf66f8700 (patch) | |
tree | 775ad79cdb8c18a70192288348f05ae8878aa944 /sci-libs | |
parent | net-irc/rbot: fix broken tests, bug 624744; add ruby23 (diff) | |
download | gentoo-c2f1593960a02f1e374e0751457be58cf66f8700.tar.gz gentoo-c2f1593960a02f1e374e0751457be58cf66f8700.tar.bz2 gentoo-c2f1593960a02f1e374e0751457be58cf66f8700.zip |
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
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/netcdf/netcdf-4.4.1.1.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sci-libs/netcdf/netcdf-4.4.1.1.ebuild b/sci-libs/netcdf/netcdf-4.4.1.1.ebuild index 703031c4062f..b295062f6d98 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 |