We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a8aa16 commit 213dcb3Copy full SHA for 213dcb3
cabal-install/tests/IntegrationTests2.hs
@@ -1436,9 +1436,11 @@ testSetupScriptStyles config reportSubCase = do
1436
1437
let isOSX (Platform _ OSX) = True
1438
isOSX _ = False
1439
+ compilerVer = compilerVersion (pkgConfigCompiler sharedConfig)
1440
-- Skip the Custom tests when the shipped Cabal library is buggy
1441
unless (isOSX (pkgConfigPlatform sharedConfig)
- && compilerVersion (pkgConfigCompiler sharedConfig) < mkVersion [7,10]) $ do
1442
+ && (compilerVer < mkVersion [7,10])
1443
+ || compilerVer >= mkVersion [9,10])) $ do
1444
1445
(plan1, res1) <- executePlan plan0
1446
pkg1 <- expectPackageInstalled plan1 res1 pkgidA
0 commit comments