We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7dd8c2 commit a90d44fCopy full SHA for a90d44f
cabal-testsuite/PackageTests/ForeignLibs/setup.test.hs
@@ -29,7 +29,8 @@ main = setupAndCabalTest . recordMode DoNotRecord $ do
29
skipUnlessGhcVersion ">= 7.8"
30
win <- isWindows
31
ghc94 <- isGhcVersion ">= 9.4.1"
32
- expectBrokenIf (win && ghc94) 8451 $
+ ghc844 <- isGhcVersion "== 8.4.4"
33
+ expectBrokenIf (ghc844 || (win && ghc94)) 8451 $
34
withPackageDb $ do
35
setup_install []
36
setup "copy" [] -- regression test #4156
0 commit comments