mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-02-07 11:57:28 +01:00
scientific and bytestring
This commit is contained in:
parent
cf202d675d
commit
a03133c375
@ -152,6 +152,9 @@ defaultExpectedFailures ghcVer = execWriter $ do
|
|||||||
-- https://github.com/fpco/stackage/issues/226
|
-- https://github.com/fpco/stackage/issues/226
|
||||||
add "options"
|
add "options"
|
||||||
|
|
||||||
|
-- Requires too high a bytestring
|
||||||
|
when (ghcVer <= GhcMajorVersion 7 4) $ add "scientific"
|
||||||
|
|
||||||
where
|
where
|
||||||
add = tell . singleton . PackageName
|
add = tell . singleton . PackageName
|
||||||
|
|
||||||
|
|||||||
@ -40,7 +40,11 @@ defaultSelectSettings version = SelectSettings
|
|||||||
Just v | Just range <- simpleParse "< 0.5", v `withinRange` range
|
Just v | Just range <- simpleParse "< 0.5", v `withinRange` range
|
||||||
-> Set.singleton "containers-old"
|
-> Set.singleton "containers-old"
|
||||||
_ -> Set.empty)
|
_ -> 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 ()
|
, allowedPackage = const $ Right ()
|
||||||
, useGlobalDatabase = False
|
, useGlobalDatabase = False
|
||||||
, skippedTests =
|
, skippedTests =
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user