summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gorrod <alexg@wiredtiger.com>2014-12-24 07:44:59 +1100
committerAlex Gorrod <alexg@wiredtiger.com>2014-12-24 07:44:59 +1100
commit1dd8474373ec5833c566a51c229658e813058cb4 (patch)
tree023329f834fa9341457906fada6167e3f60f7db8
parentbc7ed41d8e3d9c268c0d57600a36d32c98bdf8b0 (diff)
parent424959d95b8b5137f94b73d6583ba444b677b4f8 (diff)
downloadmongo-1dd8474373ec5833c566a51c229658e813058cb4.tar.gz
Merge pull request #1515 from markbenvenuto/win_test_config02_fix
Skip Unix specific permissions test on Windows
-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)