Skip to content

Commit

Permalink
Mark ForeignLibs broken for win and 9.0
Browse files Browse the repository at this point in the history
Referencing issue haskell#7989
  • Loading branch information
jneira committed Mar 14, 2022
1 parent 245d2ef commit 5c79dc2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cabal-testsuite/PackageTests/ForeignLibs/setup.test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ main = setupAndCabalTest . recordMode DoNotRecord $ do
-- Foreign libraries don't work with GHC 7.6 and earlier
skipUnlessGhcVersion ">= 7.8"
osx <- isOSX
ghc <- isGhcVersion "== 8.0.2"
expectBrokenIf (osx && ghc) 7989 $
ghc80 <- isGhcVersion "== 8.0.2"
win <- isWindows
ghcGreaterThan90 <- isGhcVersion ">= 9.0"
expectBrokenIf ((osx && ghc80) || (win && ghcGreaterThan90)) 7989 $
withPackageDb $ do
setup_install []
setup "copy" [] -- regression test #4156
Expand Down

0 comments on commit 5c79dc2

Please sign in to comment.