Commit eb473877 authored by Senthil Kumaran's avatar Senthil Kumaran

Merged revisions 84871 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84871 | senthil.kumaran | 2010-09-18 08:25:03 +0530 (Sat, 18 Sep 2010) | 3 lines

  Skip the distutils mode test on Windows OS.
........
parent 1fbe2243
...@@ -3,6 +3,7 @@ import unittest ...@@ -3,6 +3,7 @@ import unittest
import os import os
import stat import stat
import shutil import shutil
import sys
from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree, from distutils.dir_util import (mkpath, remove_tree, create_tree, copy_tree,
ensure_relative) ensure_relative)
...@@ -49,6 +50,8 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase): ...@@ -49,6 +50,8 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase):
wanted = ["removing '%s' (and everything under it)" % self.root_target] wanted = ["removing '%s' (and everything under it)" % self.root_target]
self.assertEquals(self._logs, wanted) self.assertEquals(self._logs, wanted)
@unittest.skipIf(sys.platform.startswith('win'),
"This test is only appropriate for POSIX-like systems.")
def test_mkpath_with_custom_mode(self): def test_mkpath_with_custom_mode(self):
mkpath(self.target, 0o700) mkpath(self.target, 0o700)
self.assertEqual(stat.S_IMODE(os.stat(self.target).st_mode), 0o700) self.assertEqual(stat.S_IMODE(os.stat(self.target).st_mode), 0o700)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment