summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-08-11 00:58:59 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-08-11 00:58:59 (GMT)
commit4a0b6f70f62baef9eb02b5a1ea4748c57d442d99 (patch)
tree2bc955ac32e6328882383944c95da33214d449cd
parente1acf347a59cf9948c0d7a3282786cdfe3cd1597 (diff)
downloadcpython-4a0b6f70f62baef9eb02b5a1ea4748c57d442d99.zip
cpython-4a0b6f70f62baef9eb02b5a1ea4748c57d442d99.tar.gz
cpython-4a0b6f70f62baef9eb02b5a1ea4748c57d442d99.tar.bz2
Issue #15301: skip new test method so Windows builtbots stop failing.
-rw-r--r--Lib/test/test_os.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 13ff18f..ea2949a 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -867,6 +867,7 @@ class MakedirTests(unittest.TestCase):
os.makedirs(path, mode=mode, exist_ok=True)
os.umask(old_mask)
+ @unittest.skipUnless(hasattr(os, 'chown'), 'test needs os.chown')
def test_chown_uid_gid_arguments_must_be_index(self):
stat = os.stat(support.TESTFN)
uid = stat.st_uid