From a4e65be64850d13779e0b16c8e05e3715c893fbd Mon Sep 17 00:00:00 2001 From: jneira Date: Mon, 7 Mar 2022 13:15:10 +0100 Subject: [PATCH] Skip T3827 for ghc-9.0.2, see #8032 --- cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs b/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs index 1771c5e19fe..f89a4fe4d9c 100644 --- a/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs +++ b/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs @@ -1,8 +1,8 @@ import Test.Cabal.Prelude main = cabalTest $ do - win <- isWindows - missesProfiling <- isGhcVersion ">= 9.2.1" + linux <- isLinux + missesProfilingLinux <- isGhcVersion ">= 9.0.2" osx <- isOSX missesProfilingOsx <- isGhcVersion ">= 8.10.7" - expectBrokenIf (missesProfiling && not win || osx && missesProfilingOsx) 8032 $ + expectBrokenIf (linux && missesProfilingLinux || osx && missesProfilingOsx) 8032 $ cabal "v2-build" ["exe:q"]