summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tarfile.py
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2010-06-03 10:11:52 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2010-06-03 10:11:52 (GMT)
commit2470ff19e620e96a39c58a2827646205024db800 (patch)
treee1898ac8c79f5e7c3144b0e3019ebf64dfb84def /Lib/test/test_tarfile.py
parent850fc85e69b31095769bdb40b3df04e70848eddd (diff)
downloadcpython-2470ff19e620e96a39c58a2827646205024db800.zip
cpython-2470ff19e620e96a39c58a2827646205024db800.tar.gz
cpython-2470ff19e620e96a39c58a2827646205024db800.tar.bz2
Merged revisions 81663 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81663 | lars.gustaebel | 2010-06-03 11:56:22 +0200 (Thu, 03 Jun 2010) | 4 lines Issue #8833: tarfile created hard link entries with a size field != 0 by mistake. The associated testcase did not expose this bug because it was broken too. ........
Diffstat (limited to 'Lib/test/test_tarfile.py')
-rw-r--r--Lib/test/test_tarfile.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py
index c0741ee..ec6f82f 100644
--- a/Lib/test/test_tarfile.py
+++ b/Lib/test/test_tarfile.py
@@ -661,10 +661,14 @@ class WriteTest(WriteTestBase):
if hasattr(os, "link"):
link = os.path.join(TEMPDIR, "link")
target = os.path.join(TEMPDIR, "link_target")
- open(target, "wb").close()
+ fobj = open(target, "wb")
+ fobj.write(b"aaa")
+ fobj.close()
os.link(target, link)
try:
tar = tarfile.open(tmpname, self.mode)
+ # Record the link target in the inodes list.
+ tar.gettarinfo(target)
tarinfo = tar.gettarinfo(link)
self.assertEqual(tarinfo.size, 0)
finally: