mirror of https://github.com/python/cpython.git
Make sure that xstar headers are read correctly.
This commit is contained in:
parent
31f6bc018b
commit
6bf51da9d4
|
@ -208,6 +208,15 @@ def test_v7_dirtype(self):
|
||||||
self.assert_(tarinfo.type == tarfile.DIRTYPE,
|
self.assert_(tarinfo.type == tarfile.DIRTYPE,
|
||||||
"v7 dirtype failed")
|
"v7 dirtype failed")
|
||||||
|
|
||||||
|
def test_xstar_type(self):
|
||||||
|
# The xstar format stores extra atime and ctime fields inside the
|
||||||
|
# space reserved for the prefix field. The prefix field must be
|
||||||
|
# ignored in this case, otherwise it will mess up the name.
|
||||||
|
try:
|
||||||
|
self.tar.getmember("misc/regtype-xstar")
|
||||||
|
except KeyError:
|
||||||
|
self.fail("failed to find misc/regtype-xstar (mangled prefix?)")
|
||||||
|
|
||||||
def test_check_members(self):
|
def test_check_members(self):
|
||||||
for tarinfo in self.tar:
|
for tarinfo in self.tar:
|
||||||
self.assert_(int(tarinfo.mtime) == 07606136617,
|
self.assert_(int(tarinfo.mtime) == 07606136617,
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue