haskellPackages.hspec-core: Disable tests on i686.

The tests have x86_64 results hardcoded, see
https://github.com/hspec/hspec/issues/431.
This commit is contained in:
Niklas Hambüchen 2020-03-28 04:03:18 +01:00 committed by Peter Simons
parent 03d4d25830
commit f447e4cf6a

View File

@ -326,6 +326,7 @@ self: super: {
hs2048 = dontCheck super.hs2048;
hsbencher = dontCheck super.hsbencher;
hsexif = dontCheck super.hsexif;
hspec-core = if pkgs.stdenv.isi686 then dontCheck super.hspec-core else super.hspec-core; # tests rely on `Int` being 64-bit; https://github.com/hspec/hspec/issues/431
hspec-server = dontCheck super.hspec-server;
HTF = dontCheck super.HTF;
htsn = dontCheck super.htsn;