Browse Source

fix new xattr tests for binary test runs

the tests do object patching, this does not work
when we call the external binary "borg.exe".

this made these tests fail IF the borg.exe was
available (like in the debian stretch vagrant VM).
Thomas Waldmann 3 years ago
parent
commit
8b192db076
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/borg/testsuite/archiver.py

+ 8 - 0
src/borg/testsuite/archiver.py

@@ -3527,6 +3527,14 @@ class ArchiverTestCaseBinary(ArchiverTestCase):
         else:
         else:
             super().test_fuse()
             super().test_fuse()
 
 
+    @unittest.skip('patches objects')
+    def test_do_not_fail_when_percent_is_in_xattr_name(self):
+        pass
+
+    @unittest.skip('patches objects')
+    def test_do_not_fail_when_percent_is_in_file_name(self):
+        pass
+
 
 
 class ArchiverCheckTestCase(ArchiverTestCaseBase):
 class ArchiverCheckTestCase(ArchiverTestCaseBase):