Skip to content

Commit 9b39be5

Browse files
committed
Disable test for 3324 on Windows
The filesystem woes make it fail way too often
1 parent bbcfe3f commit 9b39be5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cabal-install/tests/IntegrationTests2.hs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1442,8 +1442,11 @@ testBuildLocalTarball config = do
14421442

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

0 commit comments

Comments
 (0)