Skip to content

Commit

Permalink
Disable test for 3324 on Windows
Browse files Browse the repository at this point in the history
The filesystem woes make it fail way too often
  • Loading branch information
phadej committed Mar 11, 2020
1 parent bbcfe3f commit 9b39be5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cabal-install/tests/IntegrationTests2.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1442,8 +1442,11 @@ testBuildLocalTarball config = do

-- | See <https://github.com/haskell/cabal/issues/3324>
--
-- This test just doesn't seem to work on Windows,
-- due filesystem woes.
--
testRegressionIssue3324 :: ProjectConfig -> Assertion
testRegressionIssue3324 config = do
testRegressionIssue3324 config = when (buildOS /= Windows) $ do
-- expected failure first time due to missing dep
(plan1, res1) <- executePlan =<< planProject testdir config
(_pkgq, failure) <- expectPackageFailed plan1 res1 "q-0.1"
Expand Down

0 comments on commit 9b39be5

Please sign in to comment.