From 37c631bba112fef535fea3dfff9815a9900a5b0c Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Fri, 24 Jun 2022 22:03:13 +0200 Subject: [PATCH] Revert "Skip T3827 for ghc-9.0.2, see #8032" This reverts commit e1690c19218a21fffbcdba6c57512a6a8a2476fb. --- 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 f89a4fe4d9c..1771c5e19fe 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 - linux <- isLinux - missesProfilingLinux <- isGhcVersion ">= 9.0.2" + win <- isWindows + missesProfiling <- isGhcVersion ">= 9.2.1" osx <- isOSX missesProfilingOsx <- isGhcVersion ">= 8.10.7" - expectBrokenIf (linux && missesProfilingLinux || osx && missesProfilingOsx) 8032 $ + expectBrokenIf (missesProfiling && not win || osx && missesProfilingOsx) 8032 $ cabal "v2-build" ["exe:q"]