The filename fix of the previous checkin was complete bogus, the problem is elsewhere. Retracting.
This commit is contained in:
parent
c7fcc2d772
commit
149a8993b0
|
@ -74,7 +74,7 @@ class ReadTest(BaseTest):
|
|||
"""
|
||||
if self.sep != "|":
|
||||
f1 = self.tar.extractfile("S-SPARSE")
|
||||
f2 = self.tar.extractfile("/S-SPARSE-WITH-NULLS")
|
||||
f2 = self.tar.extractfile("S-SPARSE-WITH-NULLS")
|
||||
self.assert_(f1.read() == f2.read(),
|
||||
"_FileObject failed on sparse file member")
|
||||
|
||||
|
@ -82,7 +82,7 @@ class ReadTest(BaseTest):
|
|||
"""Test readlines() method of _FileObject.
|
||||
"""
|
||||
if self.sep != "|":
|
||||
filename = "/0-REGTYPE-TEXT"
|
||||
filename = "0-REGTYPE-TEXT"
|
||||
self.tar.extract(filename, dirname())
|
||||
lines1 = file(os.path.join(dirname(), filename), "rU").readlines()
|
||||
lines2 = self.tar.extractfile(filename).readlines()
|
||||
|
@ -93,7 +93,7 @@ class ReadTest(BaseTest):
|
|||
"""Test seek() method of _FileObject, incl. random reading.
|
||||
"""
|
||||
if self.sep != "|":
|
||||
filename = "/0-REGTYPE"
|
||||
filename = "0-REGTYPE"
|
||||
self.tar.extract(filename, dirname())
|
||||
data = file(os.path.join(dirname(), filename), "rb").read()
|
||||
|
||||
|
|
Loading…
Reference in New Issue