Skip to content

Commit

Permalink
Revert "Skip T3827 for ghc-9.0.2, see haskell#8032"
Browse files Browse the repository at this point in the history
This reverts commit e1690c1.
  • Loading branch information
ulysses4ever committed Jun 25, 2022
1 parent 8f6af47 commit 60a5ae0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
ghc: ["9.2.1", "9.0.2", "8.10.7", "8.8.4", "8.6.5", "8.4.4", "8.0.2"]
ghc: ["9.2.2", "9.0.2", "8.10.7", "8.8.4", "8.6.5", "8.4.4", "8.0.2"]
exclude:
# lot of segfaults caused by ghc bugs
- os: "windows-latest"
Expand Down
6 changes: 3 additions & 3 deletions cabal-testsuite/PackageTests/NewBuild/T3827/cabal.test.hs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Test.Cabal.Prelude
main = cabalTest $ do
linux <- isLinux
missesProfilingLinux <- isGhcVersion ">= 9.0.2"
win <- isWindows
missesProfiling <- isGhcVersion "== 9.0.2"
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"]

0 comments on commit 60a5ae0

Please sign in to comment.