2
0
Эх сурвалжийг харах

Merge pull request #1784 from ThomasWaldmann/fix-darwin64-fuse-tests

vagrant: fix fuse test for darwin, fixes #1546
TW 8 жил өмнө
parent
commit
935d66085f

+ 1 - 0
borg/testsuite/archiver.py

@@ -211,6 +211,7 @@ class ArchiverTestCaseBase(BaseTestCase):
         os.environ['BORG_KEYS_DIR'] = self.keys_path
         os.environ['BORG_CACHE_DIR'] = self.cache_path
         os.mkdir(self.input_path)
+        os.chmod(self.input_path, 0o777)  # avoid troubles with fakeroot / FUSE
         os.mkdir(self.output_path)
         os.mkdir(self.keys_path)
         os.mkdir(self.cache_path)