Skip to content

Commit

Permalink
Mark ForeignLibs test as broken with ghc-8.4.4
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mpickering authored and Mikolaj committed Feb 23, 2024
1 parent f7dd8c2 commit a90d44f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cabal-testsuite/PackageTests/ForeignLibs/setup.test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ main = setupAndCabalTest . recordMode DoNotRecord $ do
skipUnlessGhcVersion ">= 7.8"
win <- isWindows
ghc94 <- isGhcVersion ">= 9.4.1"
expectBrokenIf (win && ghc94) 8451 $
ghc844 <- isGhcVersion "== 8.4.4"
expectBrokenIf (ghc844 || (win && ghc94)) 8451 $
withPackageDb $ do
setup_install []
setup "copy" [] -- regression test #4156
Expand Down

0 comments on commit a90d44f

Please sign in to comment.