From 797fafd8085fa65e0a248e03e2ad08af7ef01cb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 5 Jun 2012 12:29:03 +0000 Subject: [PATCH] hwloc: Disable tests on Cygwin. svn path=/nixpkgs/trunk/; revision=34359 --- pkgs/development/libraries/hwloc/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 + # . + doCheck = !stdenv.isCygwin; meta = { description = "hwloc, a portable abstraction of hierarchical architectures for high-performance computing";