summary refs log tree commit diff
path: root/pkgs/development/libraries/hwloc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-06-05 12:29:03 +0000
committerLudovic Courtès <ludo@gnu.org>2012-06-05 12:29:03 +0000
commit797fafd8085fa65e0a248e03e2ad08af7ef01cb4 (patch)
treec026b19ef5b0434813d5623d31a0f3bfe43ee7a3 /pkgs/development/libraries/hwloc
parent7fd5e26ededa29fd0f842f84a658b644e25c5544 (diff)
downloadnixpkgs-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar
nixpkgs-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.gz
nixpkgs-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.bz2
nixpkgs-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.lz
nixpkgs-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.xz
nixpkgs-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.zst
nixpkgs-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.zip
hwloc: Disable tests on Cygwin.
svn path=/nixpkgs/trunk/; revision=34359
Diffstat (limited to 'pkgs/development/libraries/hwloc')
-rw-r--r--pkgs/development/libraries/hwloc/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/hwloc/default.nix b/pkgs/development/libraries/hwloc/default.nix
index fd93326d5ee..aa59a891714 100644
--- a/pkgs/development/libraries/hwloc/default.nix
+++ b/pkgs/development/libraries/hwloc/default.nix
@@ -33,7 +33,9 @@ stdenv.mkDerivation rec {
              -e "s|-lnuma|-L$numalibdir -lnuma|g"
       '';
 
-  doCheck = true;
+  # XXX: A test hangs on Cygwin, see
+  # <http://hydra.bordeaux.inria.fr/build/51474/nixlog/1/raw>.
+  doCheck = !stdenv.isCygwin;
 
   meta = {
     description = "hwloc, a portable abstraction of hierarchical architectures for high-performance computing";