From 3c0b2ca7b300fee6c13ec770bddb747c49f4eb7d Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 21 Nov 2021 21:04:54 +0100 Subject: [PATCH] haskellPackages.hls-hlint-plugin: don't run tests on aarch64-linux Seems like its test suite triggers a similar RTS bug as the doctest test suites. --- pkgs/development/haskell-modules/configuration-arm.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-arm.nix b/pkgs/development/haskell-modules/configuration-arm.nix index 7f21deebbf7c..3eb850ac1d18 100644 --- a/pkgs/development/haskell-modules/configuration-arm.nix +++ b/pkgs/development/haskell-modules/configuration-arm.nix @@ -96,6 +96,11 @@ self: super: { hls-module-name-plugin = dontCheck super.hls-module-name-plugin; hls-brittany-plugin = dontCheck super.hls-brittany-plugin; + # Similar RTS issue in test suite: + # rts/linker/elf_reloc_aarch64.c:98: encodeAddendAarch64: Assertion `isInt64(21+12, addend)' failed. + hls-hlint-plugin = dontCheck super.hls-hlint-plugin; + + # https://github.com/ekmett/half/issues/35 half = dontCheck super.half;