projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7bd5dbe
)
Temporarily disable newly failing test for the release.
author
Georg Brandl
<georg@python.org>
Sun, 5 Dec 2010 07:51:39 +0000
(07:51 +0000)
committer
Georg Brandl
<georg@python.org>
Sun, 5 Dec 2010 07:51:39 +0000
(07:51 +0000)
Lib/test/test_shutil.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_shutil.py
b/Lib/test/test_shutil.py
index ee35595cb9480085840429f73b4d606306aa6f31..d9e96785b2cb7c9a75ccacc65546e1ab709c6bf9 100644
(file)
--- 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')