Make sure that xstar headers are read correctly.

This commit is contained in:
Lars Gustäbel 2008-02-11 19:17:10 +00:00
parent 31f6bc018b
commit 6bf51da9d4
2 changed files with 9 additions and 0 deletions

View File

@ -208,6 +208,15 @@ class MiscReadTest(ReadTest):
self.assert_(tarinfo.type == tarfile.DIRTYPE,
"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):
for tarinfo in self.tar:
self.assert_(int(tarinfo.mtime) == 07606136617,

Binary file not shown.