From 0484f9f4b6b71218fc2ef6544b0a7eb894eb048b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 20 Jan 2015 17:28:50 +0100 Subject: [PATCH] Disable many test suites. --- .../haskell-modules/configuration-common.nix | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c6b2ed24d6a3..e846e0baca1e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -174,14 +174,28 @@ self: super: { # https://github.com/vincenthz/tasty-kat/issues/1 tasty-kat = dontCheck super.tasty-kat; - # Tries to execute non-existent external programs. + # These packages try to execute non-existent external programs. + filestore = dontCheck super.filestore; HList = dontCheck super.HList; + memcached-binary = dontCheck super.memcached-binary; + postgresql-simple = dontCheck super.postgresql-simple; + snowball = dontCheck super.snowball; + xmlgen = dontCheck super.xmlgen; + + # Tries to access the network. + js-jquery = dontCheck super.js-jquery; # https://github.com/NICTA/digit/issues/3 digit = dontCheck super.digit; - # Tries to execute non-existent external programs. - filestore = dontCheck super.filestore; + # Fails for non-obvious reasons while attempting to use doctest. + search = dontCheck super.search; + + # https://github.com/ekmett/structures/issues/3 + structures = dontCheck super.structures; + + # Tries to mess with extended POSIX attributes, but can't in our chroot environment. + xattr = dontCheck super.xattr; } // {