Commit e3bdcf4f authored by Senthil Kumaran's avatar Senthil Kumaran

skip the extractall test on platforms where os.symlink is not available.

parent 123932f2
......@@ -249,6 +249,7 @@ class MiscReadTest(ReadTest):
data = open(os.path.join(TEMPDIR, "ustar/symtype"), "rb").read()
self.assertEqual(md5sum(data), md5_regtype)
@unittest.skipUnless(hasattr(os,'symlink'), "needs os.symlink")
def test_extractall(self):
# Test if extractall() correctly restores directory permissions
# and times (see issue1735).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment