From 8454c7cf80559763f967e6fdf897c7adeee89881 Mon Sep 17 00:00:00 2001 From: Mikolaj Konarski Date: Wed, 3 Aug 2022 22:12:05 +0200 Subject: [PATCH] It failed on OSX now, so let's disable it everywhere except on Windows Who would have thought. --- cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs b/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs index fc34641dec3..f418538b074 100644 --- a/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs +++ b/cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs @@ -1,10 +1,6 @@ import Test.Cabal.Prelude main = cabalTest $ do linux <- isLinux - missesProfilingLinux <- isGhcVersion ">= 9.0.2" osx <- isOSX - missesProfilingOsx <- isGhcVersion ">= 8.10.7" - skipIf "8032 heisenbug profiling" linux - expectBrokenIf (linux && missesProfilingLinux - || osx && missesProfilingOsx) 8032 $ - cabal "v2-build" ["exe:q"] + skipIf "8032 heisenbug profiling" (linux || osx) + cabal "v2-build" ["exe:q"]