Merge pull request #33683 from dhess/hashable-armv7l-fix

haskell-modules: disable hashable tests on armv7l-linux.
This commit is contained in:
Peter Simons 2018-01-10 07:23:43 +01:00 committed by GitHub
commit e07733ec92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -928,6 +928,7 @@ self: super: {
# armv7l fixes.
happy = if pkgs.stdenv.isArm then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
hashable = if pkgs.stdenv.isArm then dontCheck super.hashable else super.hashable; # https://github.com/tibbe/hashable/issues/95
# Tries to read a file it is not allowed to in the test suite
load-env = dontCheck super.load-env;