Skip to content

Commit

Permalink
CI: Disable failing test for ghc >= 9.4.* on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Nov 3, 2023
1 parent 8fc3b9e commit 38896d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cabal-testsuite/PackageTests/UniqueIPID/setup.test.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import Test.Cabal.Prelude
import Data.List
-- Test that setup computes different IPIDs when dependencies change
main = setupAndCabalTest $ do
main = do
isWin <- isWindows
ghcRecent <- isGhcVersion ">= 9.4"
expectFailIf (isWin && ghcRecent) $ do
setupAndCabalTest $ do
withPackageDb $ do
withDirectory "P1" $ setup "configure" ["--disable-deterministic"]
withDirectory "P2" $ setup "configure" ["--disable-deterministic"]
Expand Down

0 comments on commit 38896d3

Please sign in to comment.