Skip some more tests

This commit is contained in:
Michael Snoyman 2014-04-14 09:22:55 +03:00
parent ffa94ffc26
commit f8304eafdd
2 changed files with 5 additions and 2 deletions

View File

@ -178,7 +178,7 @@ loadPackageDB settings coreMap core deps = do
, if skipTests p
then mempty
else mconcat $ map (go gpd . snd) $ condTestSuites gpd
, mconcat $ map (go gpd . snd) $ condBenchmarks gpd
-- FIXME , mconcat $ map (go gpd . snd) $ condBenchmarks gpd
], not $ null $ condTestSuites gpd
, Set.fromList $ map depName $ libExeBuildInfo gpd
, Set.fromList $ map depName $ testBenchBuildInfo gpd

View File

@ -43,7 +43,10 @@ defaultSelectSettings version = SelectSettings
, disabledFlags = Set.fromList $ words "bytestring-in-base test-hlint"
, allowedPackage = const $ Right ()
, useGlobalDatabase = False
, skippedTests = empty
, skippedTests =
if version >= GhcMajorVersion 7 8
then Set.singleton (PackageName "punycode") -- pulls in encoding
else Set.empty
, selectGhcVersion = version
, selectTarballDir = "patching/tarballs"
}