Skip to content

Commit 1b9f476

Browse files
committed
Disable broken tests
1 parent 24dc99d commit 1b9f476

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/exe-dlls/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let
1414
packages = project.hsPkgs;
1515

1616
in recurseIntoAttrs rec {
17-
meta.disabled = stdenv.hostPlatform.isGhcjs;
17+
meta.disabled = stdenv.hostPlatform.isGhcjs || stdenv.hostPlatform.isWasm;
1818

1919
ifdInputs = {
2020
inherit (project) plan-nix;

test/exe-lib-dlls/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let
1414
packages = project.hsPkgs;
1515

1616
in recurseIntoAttrs rec {
17-
meta.disabled = stdenv.hostPlatform.isGhcjs;
17+
meta.disabled = stdenv.hostPlatform.isGhcjs || stdenv.hostPlatform.isWasm;
1818

1919
ifdInputs = {
2020
inherit (project) plan-nix;

test/gi-gtk/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let
1616
packages = project.hsPkgs;
1717

1818
in recurseIntoAttrs rec {
19-
meta.disabled = stdenv.hostPlatform.isGhcjs
19+
meta.disabled = stdenv.hostPlatform.isGhcjs || stdenv.hostPlatform.isWasm
2020
# Gtk cross compilation seems to be broken in nixpkgs
2121
|| stdenv.hostPlatform.isWindows
2222
# We can't make static libraries for Gtk

test/th-dlls/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let
1919
packages-ei = (project true).hsPkgs;
2020

2121
in recurseIntoAttrs {
22-
meta.disabled = stdenv.hostPlatform.isGhcjs
22+
meta.disabled = stdenv.hostPlatform.isGhcjs || stdenv.hostPlatform.isWasm
2323
# On aarch64 this test also breaks form musl builds (including cross compiles on x86_64-linux)
2424
|| (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isMusl)
2525
# Failed to lookup symbol: __aarch64_swp8_acq_rel

0 commit comments

Comments
 (0)