summary refs log tree commit diff
path: root/pkgs/development
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
parent7fd5e26ededa29fd0f842f84a658b644e25c5544 (diff)
downloadnixlib-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar
nixlib-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.gz
nixlib-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.bz2
nixlib-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.lz
nixlib-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.xz
nixlib-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.tar.zst
nixlib-797fafd8085fa65e0a248e03e2ad08af7ef01cb4.zip
hwloc: Disable tests on Cygwin.
svn path=/nixpkgs/trunk/; revision=34359
Diffstat (limited to 'pkgs/development')
-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 fd93326d5ee3..aa59a8917141 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";