File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1436,9 +1436,11 @@ testSetupScriptStyles config reportSubCase = do
14361436
14371437 let isOSX (Platform _ OSX ) = True
14381438 isOSX _ = False
1439+ compilerVer = compilerVersion (pkgConfigCompiler sharedConfig)
14391440 -- Skip the Custom tests when the shipped Cabal library is buggy
1440- unless (isOSX (pkgConfigPlatform sharedConfig)
1441- && compilerVersion (pkgConfigCompiler sharedConfig) < mkVersion [7 ,10 ]) $ do
1441+ unless ((isOSX (pkgConfigPlatform sharedConfig) && (compilerVer < mkVersion [7 ,10 ]))
1442+ -- 9.10 shipw Cabal 3.12.0.0 affected by #9940
1443+ || (mkVersion [9 ,10 ] <= compilerVer && compilerVer < mkVersion [9 ,11 ])) $ do
14421444
14431445 (plan1, res1) <- executePlan plan0
14441446 pkg1 <- expectPackageInstalled plan1 res1 pkgidA
You can’t perform that action at this time.
0 commit comments