summaryrefslogtreecommitdiff
path: root/Test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-02-15 15:53:55 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-02-15 15:53:55 -0400
commit136dc1cb9a02670965d9cc7c3310684c9a5d783a (patch)
tree4c372d092ed4d89fe1d503b06d722e1569eb9a8a /Test.hs
parentd1a98f9d0be87de0c031c66b2329d78309e03303 (diff)
skip v6 locked tests on windows, not supported
Diffstat (limited to 'Test.hs')
-rw-r--r--Test.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Test.hs b/Test.hs
index bd57621c4..8971d18e0 100644
--- a/Test.hs
+++ b/Test.hs
@@ -131,9 +131,10 @@ tests opts = testGroup "Tests" $ properties :
where
testmodes =
[ ("v6 unlocked", (testMode opts "6") { unlockedFiles = True })
- , ("v6 locked", testMode opts "6")
, ("v5", testMode opts "5")
#ifndef mingw32_HOST_OS
+ -- Windows does not support locked files in v6 yet.
+ , ("v6 locked", testMode opts "6")
-- Windows will only use direct mode, so don't test twice.
, ("v5 direct", (testMode opts "5") { forceDirect = True })
#endif