From: Georg Brandl Date: Sun, 5 Dec 2010 07:51:39 +0000 (+0000) Subject: Temporarily disable newly failing test for the release. X-Git-Tag: v3.2b1~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=724d0895e8aee6f5d64735e9a65ca2f2c271d137;p=thirdparty%2FPython%2Fcpython.git Temporarily disable newly failing test for the release. --- diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index ee35595cb948..d9e96785b2cb 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -273,6 +273,9 @@ class TestShutil(unittest.TestCase): @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') def test_dont_copy_file_onto_link_to_itself(self): + # Temporarily disable test on Windows. + if os.name == 'nt': + return # bug 851123. os.mkdir(TESTFN) src = os.path.join(TESTFN, 'cheese')