From 724d0895e8aee6f5d64735e9a65ca2f2c271d137 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 5 Dec 2010 07:51:39 +0000 Subject: Temporarily disable newly failing test for the release. --- Lib/test/test_shutil.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index ee35595..d9e9678 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') -- cgit v0.12