Skip to content

Commit a90d44f

Browse files
mpickeringMikolaj
authored andcommitted
Mark ForeignLibs test as broken with ghc-8.4.4
It fails in the old-ghcs 8.4.4 configuration, and debugging why seems to have very little pay-off for this niche feature in a very old configuration.
1 parent f7dd8c2 commit a90d44f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cabal-testsuite/PackageTests/ForeignLibs/setup.test.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ main = setupAndCabalTest . recordMode DoNotRecord $ do
2929
skipUnlessGhcVersion ">= 7.8"
3030
win <- isWindows
3131
ghc94 <- isGhcVersion ">= 9.4.1"
32-
expectBrokenIf (win && ghc94) 8451 $
32+
ghc844 <- isGhcVersion "== 8.4.4"
33+
expectBrokenIf (ghc844 || (win && ghc94)) 8451 $
3334
withPackageDb $ do
3435
setup_install []
3536
setup "copy" [] -- regression test #4156

0 commit comments

Comments
 (0)