Skip to content

Commit 29500f0

Browse files
committed
Skip broken tests
1 parent 8527921 commit 29500f0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

test/js-template-haskell/default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,16 @@ in recurseIntoAttrs {
2424
};
2525

2626
meta.disabled = builtins.elem compiler-nix-name ["ghc91320241204"]
27+
# Not sure why this is failing with a seg fault
28+
|| (builtins.elem compiler-nix-name ["ghc9102" "ghc9102llvm"] && stdenv.hostPlatform.isAndroid && stdenv.hostPlatform.isAarch32)
2729
# unhandled ELF relocation(Rel) type 10
2830
|| (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_32);
2931

3032
build = packages.js-template-haskell.components.library;
3133
check = packages.js-template-haskell.checks.test;
3234
} // optionalAttrs (!(
3335
stdenv.hostPlatform.isGhcjs
36+
|| (builtins.elem compiler-nix-name ["ghc984" "ghc9122" "ghc9122llvm" "ghc91320250523"] && stdenv.buildPlatform.isx86_64 && stdenv.hostPlatform.isAarch64)
3437
|| (stdenv.hostPlatform.isAarch64
3538
&& stdenv.hostPlatform.isMusl
3639
&& builtins.elem compiler-nix-name ["ghc9101" "ghc966"])

test/shell-for/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ in recurseIntoAttrs {
5555
# Does not work on windows because it needs mintty.
5656
meta.disabled = stdenv.hostPlatform.isMusl
5757
|| stdenv.hostPlatform.isGhcjs
58+
|| stdenv.hostPlatform.isWasm
5859
|| stdenv.hostPlatform.isWindows
5960
|| (haskellLib.isCrossHost && (stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isAarch32));
6061
inherit env envPkga envDefault;

0 commit comments

Comments
 (0)