We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01ca85a commit d7e450eCopy full SHA for d7e450e
cabal-testsuite/PackageTests/ForeignLibs/setup.test.hs
@@ -27,8 +27,10 @@ main = setupAndCabalTest . recordMode DoNotRecord $ do
27
-- Foreign libraries don't work with GHC 7.6 and earlier
28
skipUnlessGhcVersion ">= 7.8"
29
osx <- isOSX
30
- ghc <- isGhcVersion "== 8.0.2"
31
- expectBrokenIf (osx && ghc) 7989 $
+ ghc80 <- isGhcVersion "== 8.0.2"
+ win <- isWindows
32
+ ghcGreaterThan90 <- isGhcVersion ">= 9.0"
33
+ expectBrokenIf ((osx && ghc80) || (win && ghcGreaterThan90)) 7989 $
34
withPackageDb $ do
35
setup_install []
36
setup "copy" [] -- regression test #4156
0 commit comments