summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSusan LoVerso <sue@mongodb.com>2016-03-01 14:02:10 -0500
committerSusan LoVerso <sue@mongodb.com>2016-03-01 14:02:10 -0500
commitc8f122e9e7010d06c0e3b84927bb3750ea7783c8 (patch)
treeeb8c35c9e53cf973dee98846d2f5f0b6bcdb589a
parent5229ef8d6b2e42b7a19e701b58e549f1b8b9bafd (diff)
downloadmongo-c8f122e9e7010d06c0e3b84927bb3750ea7783c8.tar.gz
WT-2437 Skip the chmod'ed portion of the test on Windows.
-rw-r--r--test/suite/test_readonly01.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/suite/test_readonly01.py b/test/suite/test_readonly01.py
index 86604eb6bfb..0a4bc219700 100644
--- a/test/suite/test_readonly01.py
+++ b/test/suite/test_readonly01.py
@@ -96,7 +96,10 @@ class test_readonly01(wttest.WiredTigerTestCase, suite_subprocess):
# connection with readonly.
#
self.close_conn()
- if self.dirchmod:
+ #
+ # The chmod command is not fully portable to windows.
+ #
+ if self.dirchmod and os.name == 'posix':
for f in os.listdir(self.home):
if os.path.isfile(f):
os.chmod(f, 0444)