| Index: test/mozilla/testcfg.py
|
| diff --git a/test/mozilla/testcfg.py b/test/mozilla/testcfg.py
|
| index 775a239f07d186655d8efcb09f1ecd118324f01b..70a7ac663cde287e87f73808dd1fed2d96f41139 100644
|
| --- a/test/mozilla/testcfg.py
|
| +++ b/test/mozilla/testcfg.py
|
| @@ -132,8 +132,11 @@ class MozillaTestSuite(testsuite.TestSuite):
|
|
|
| # If we have a local archive file with the test data, extract it.
|
| directory_name = "data"
|
| + directory_name_old = "data.old"
|
| if os.path.exists(directory_name):
|
| - os.rename(directory_name, "data.old")
|
| + if os.path.exists(directory_name_old):
|
| + shutil.rmtree(directory_name_old)
|
| + os.rename(directory_name, directory_name_old)
|
| archive_file = "downloaded_%s.tar.gz" % MOZILLA_VERSION
|
| if os.path.exists(archive_file):
|
| with tarfile.open(archive_file, "r:gz") as tar:
|
|
|