Skip to content

Commit 3e79bf1

Browse files
committed
Enable tests that should pass
1 parent a85dd00 commit 3e79bf1

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

test/cabal-simple-debug/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let
1515
in recurseIntoAttrs {
1616
# DWARF only works on linux with GHC 8.10.2 and newer
1717
# GHC 9.2.1 disabled because of https://github.com/input-output-hk/haskell.nix/issues/1332
18-
meta.disabled = __elem compiler-nix-name ["ghc865" "ghc884" "ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927"]
18+
meta.disabled = __elem compiler-nix-name ["ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926" "ghc927"]
1919
|| !stdenv.hostPlatform.isLinux || haskellLib.isCrossHost || stdenv.hostPlatform.isMusl || stdenv.hostPlatform.isAarch64
2020
|| lib.hasSuffix "llvm" compiler-nix-name;
2121
ifdInputs = {

test/ghcjs-overlay/default.nix

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ in recurseIntoAttrs {
4141
touch $out
4242
'';
4343
meta.platforms = platforms.all;
44-
meta.disabled = haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64;
4544
passthru = {
4645
inherit project;
4746
};

test/js-template-haskell/default.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ in recurseIntoAttrs {
2323
inherit (project) plan-nix;
2424
};
2525

26-
meta.disabled = stdenv.buildPlatform != stdenv.hostPlatform && stdenv.hostPlatform.isAarch64
27-
|| builtins.elem compiler-nix-name ["ghc91320241204"]
26+
meta.disabled = builtins.elem compiler-nix-name ["ghc91320241204"]
2827
# unhandled ELF relocation(Rel) type 10
2928
|| (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_32);
3029

0 commit comments

Comments
 (0)