summaryrefslogtreecommitdiff
path: root/test/suite/test_config02.py
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-12-23 15:18:58 -0500
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-12-23 15:18:58 -0500
commit424959d95b8b5137f94b73d6583ba444b677b4f8 (patch)
tree023329f834fa9341457906fada6167e3f60f7db8 /test/suite/test_config02.py
parentbc7ed41d8e3d9c268c0d57600a36d32c98bdf8b0 (diff)
downloadmongo-424959d95b8b5137f94b73d6583ba444b677b4f8.tar.gz
Skip Unix specific permissions test on Windows
Diffstat (limited to 'test/suite/test_config02.py')
-rw-r--r--test/suite/test_config02.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/suite/test_config02.py b/test/suite/test_config02.py
index 1edcab5756d..4fa3dd4be35 100644
--- a/test/suite/test_config02.py
+++ b/test/suite/test_config02.py
@@ -149,6 +149,8 @@ class test_config02(wttest.WiredTigerTestCase):
'/No such file or directory/')
def test_home_not_writeable(self):
+ if os.name == "nt":
+ self.skipTest('Unix specific test skipped on Windows')
dir = 'subdir'
os.mkdir(dir)
os.chmod(dir, 0555)