Skip to content

Commit 7e29adf

Browse files
committed
Disable broken tests
1 parent db2297e commit 7e29adf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/coverage/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ in recurseIntoAttrs ({
2929
# Does not work on ghcjs because it needs zlib. Wasm needs network fixed.
3030
meta.disabled = stdenv.hostPlatform.isGhcjs || stdenv.hostPlatform.isWasm
3131
# For some reason the `.tix` file is not created on armv7a android (not sure why)
32-
|| stdenv.hostPlatform.isAndroid && stdenv.hostPlatform.isAarch32;
32+
|| stdenv.hostPlatform.isAndroid && stdenv.hostPlatform.isAarch32
33+
# The `input.txt` is not written (or just not found) for mingwW64 (ucrt64 works ok)
34+
|| (stdenv.hostPlatform.isWindows && stdenv.hostPlatform.libc != "ucrt");
3335
run = stdenv.mkDerivation {
3436
name = "coverage-test";
3537

0 commit comments

Comments
 (0)