Skip haskell-names test for GHC 7.4 haskell-suite/haskell-names#39

This commit is contained in:
Michael Snoyman 2013-10-01 15:48:16 +03:00
parent f783d0004f
commit 34ff87491e

View File

@ -19,7 +19,7 @@ defaultExtraCore _ = fromList $ map PackageName $ words
-- error in our package combination.
defaultExpectedFailures :: GhcMajorVersion
-> Set PackageName
defaultExpectedFailures _ = execWriter $ do
defaultExpectedFailures ghcVer = execWriter $ do
-- Requires an old version of WAI and Warp for tests
add "HTTP"
@ -106,6 +106,10 @@ defaultExpectedFailures _ = execWriter $ do
-- Some kind of Cabal bug when trying to run tests
add "thyme"
when (ghcVer < GhcMajorVersion 7 6) $ do
-- https://github.com/haskell-suite/haskell-names/issues/39
add "haskell-names"
where
add = tell . singleton . PackageName