mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-21 19:51:56 +01:00
Skip haskell-names test for GHC 7.4 haskell-suite/haskell-names#39
This commit is contained in:
parent
f783d0004f
commit
34ff87491e
@ -19,7 +19,7 @@ defaultExtraCore _ = fromList $ map PackageName $ words
|
|||||||
-- error in our package combination.
|
-- error in our package combination.
|
||||||
defaultExpectedFailures :: GhcMajorVersion
|
defaultExpectedFailures :: GhcMajorVersion
|
||||||
-> Set PackageName
|
-> Set PackageName
|
||||||
defaultExpectedFailures _ = execWriter $ do
|
defaultExpectedFailures ghcVer = execWriter $ do
|
||||||
-- Requires an old version of WAI and Warp for tests
|
-- Requires an old version of WAI and Warp for tests
|
||||||
add "HTTP"
|
add "HTTP"
|
||||||
|
|
||||||
@ -106,6 +106,10 @@ defaultExpectedFailures _ = execWriter $ do
|
|||||||
|
|
||||||
-- Some kind of Cabal bug when trying to run tests
|
-- Some kind of Cabal bug when trying to run tests
|
||||||
add "thyme"
|
add "thyme"
|
||||||
|
|
||||||
|
when (ghcVer < GhcMajorVersion 7 6) $ do
|
||||||
|
-- https://github.com/haskell-suite/haskell-names/issues/39
|
||||||
|
add "haskell-names"
|
||||||
where
|
where
|
||||||
add = tell . singleton . PackageName
|
add = tell . singleton . PackageName
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user