From 60fec843798664cc9dd4b9733fae0e2d5cf3042e Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 9 Jan 2015 17:02:42 -0500 Subject: [PATCH] Disable split testsuite on 7.10 --- pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix index 8d1248e8322..ca122ef7232 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.9.x.nix @@ -69,6 +69,9 @@ self: super: { # bos/attoparsec#92 attoparsec = overrideCabal super.attoparsec (drv: { doCheck = false; }); + # test suite hangs silently for at least 10 minutes + split = overrideCabal super.split (drv: { doCheck = false; }); + # Test suite fails with some (seemingly harmless) error. # https://code.google.com/p/scrapyourboilerplate/issues/detail?id=24 syb = overrideCabal super.syb (drv: { doCheck = false; });