scientific and bytestring

This commit is contained in:
Michael Snoyman 2014-05-19 21:06:35 +03:00
parent cf202d675d
commit a03133c375
2 changed files with 8 additions and 1 deletions

View File

@ -152,6 +152,9 @@ defaultExpectedFailures ghcVer = execWriter $ do
-- https://github.com/fpco/stackage/issues/226
add "options"
-- Requires too high a bytestring
when (ghcVer <= GhcMajorVersion 7 4) $ add "scientific"
where
add = tell . singleton . PackageName

View File

@ -40,7 +40,11 @@ defaultSelectSettings version = SelectSettings
Just v | Just range <- simpleParse "< 0.5", v `withinRange` range
-> Set.singleton "containers-old"
_ -> Set.empty)
, disabledFlags = Set.fromList $ words "bytestring-in-base test-hlint"
, disabledFlags = Set.fromList (words "bytestring-in-base test-hlint")
`Set.union`
(if version <= GhcMajorVersion 7 4
then Set.singleton "bytestring-builder"
else Set.empty)
, allowedPackage = const $ Right ()
, useGlobalDatabase = False
, skippedTests =