From 9b39be50863fffb5ca4bc6e615338874abce20f1 Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Wed, 11 Mar 2020 17:39:14 +0200 Subject: [PATCH] Disable test for 3324 on Windows The filesystem woes make it fail way too often --- cabal-install/tests/IntegrationTests2.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cabal-install/tests/IntegrationTests2.hs b/cabal-install/tests/IntegrationTests2.hs index 1dd90c46cfb..f960e4674ab 100644 --- a/cabal-install/tests/IntegrationTests2.hs +++ b/cabal-install/tests/IntegrationTests2.hs @@ -1442,8 +1442,11 @@ testBuildLocalTarball config = do -- | See -- +-- 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"