Skip to content

Commit

Permalink
Disable the test totally on Linux until we stop taking GHC from GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikolaj committed Aug 3, 2022
1 parent 60efa31 commit ede8f72
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import Test.Cabal.Prelude
main = cabalTest $ do
heisenProfiling <- isGhcVersion ">= 9.2.0"
linux <- isLinux
missesProfilingLinux <- isGhcVersion ">= 9.0.2"
osx <- isOSX
missesProfilingOsx <- isGhcVersion ">= 8.10.7"
skipIf "8032 heisenbug profiling" ((linux || osx) && heisenProfiling))
skipIf "8032 heisenbug profiling" linux
expectBrokenIf (linux && missesProfilingLinux
|| osx && missesProfilingOsx) 8032 $
cabal "v2-build" ["exe:q"]

0 comments on commit ede8f72

Please sign in to comment.