mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fixed tests for shutil.make_archive() with relative base_name in the case when
the path of the directory for temporary files contains symlinks.
This commit is contained in:
parent
8ba03cf33f
commit
5558d4f2f8
1 changed files with 2 additions and 2 deletions
|
@ -971,9 +971,9 @@ class TestShutil(unittest.TestCase):
|
|||
# working with relative paths
|
||||
work_dir = os.path.dirname(tmpdir2)
|
||||
rel_base_name = os.path.join(os.path.basename(tmpdir2), 'archive')
|
||||
base_name = os.path.join(work_dir, rel_base_name)
|
||||
|
||||
with support.change_cwd(work_dir):
|
||||
base_name = os.path.abspath(rel_base_name)
|
||||
tarball = make_archive(rel_base_name, 'gztar', root_dir, '.')
|
||||
|
||||
# check if the compressed tarball was created
|
||||
|
@ -1061,9 +1061,9 @@ class TestShutil(unittest.TestCase):
|
|||
# working with relative paths
|
||||
work_dir = os.path.dirname(tmpdir2)
|
||||
rel_base_name = os.path.join(os.path.basename(tmpdir2), 'archive')
|
||||
base_name = os.path.join(work_dir, rel_base_name)
|
||||
|
||||
with support.change_cwd(work_dir):
|
||||
base_name = os.path.abspath(rel_base_name)
|
||||
res = make_archive(rel_base_name, 'zip', root_dir, base_dir)
|
||||
|
||||
self.assertEqual(res, base_name + '.zip')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue