From 8b192db07690a64667050840abbaf7f717db0213 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 6 Jan 2022 23:14:55 +0100 Subject: [PATCH] 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). --- src/borg/testsuite/archiver.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/borg/testsuite/archiver.py b/src/borg/testsuite/archiver.py index 7cd982d5c..cbd465d07 100644 --- a/src/borg/testsuite/archiver.py +++ b/src/borg/testsuite/archiver.py @@ -3527,6 +3527,14 @@ def test_fuse(self): else: 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):