@@ -2282,14 +2282,17 @@ class TestExtractArchiveWithIllegalFilenamesWithPytarOnMacWarnings(TestExtractAr
22822282class TestExtractArchiveWithIllegalFilenamesWithSevenzipOnWin (ExtractArchiveWithIllegalFilenamesTestCase ):
22832283 check_only_warnings = False
22842284
2285+ @expectedFailure # not a problem: we use libarchive for these
22852286 def test_extract_7zip_with_weird_filenames_with_sevenzip (self ):
22862287 test_file = self .get_test_loc ('archive/weird_names/weird_names.7z' )
22872288 self .check_extract (sevenzip .extract , test_file , expected_warnings = [], expected_suffix = '7zip' )
22882289
2290+ @expectedFailure # not a problem: we use libarchive for these
22892291 def test_extract_ar_with_weird_filenames_with_sevenzip (self ):
22902292 test_file = self .get_test_loc ('archive/weird_names/weird_names.ar' )
22912293 self .check_extract (sevenzip .extract , test_file , expected_warnings = [], expected_suffix = '7zip' )
22922294
2295+ @expectedFailure # not a problem: we use libarchive for these
22932296 def test_extract_cpio_with_weird_filenames_with_sevenzip (self ):
22942297 test_file = self .get_test_loc ('archive/weird_names/weird_names.cpio' )
22952298 self .check_extract (sevenzip .extract , test_file , expected_warnings = [], expected_suffix = '7zip' )
@@ -2307,6 +2310,7 @@ def test_extract_tar_with_weird_filenames_with_sevenzip(self):
23072310 test_file = self .get_test_loc ('archive/weird_names/weird_names.tar' )
23082311 self .check_extract (sevenzip .extract , test_file , expected_warnings = [], expected_suffix = '7zip' )
23092312
2313+ @expectedFailure # not a problem: we use libarchive for these
23102314 def test_extract_zip_with_weird_filenames_with_sevenzip (self ):
23112315 test_file = self .get_test_loc ('archive/weird_names/weird_names.zip' )
23122316 self .check_extract (sevenzip .extract , test_file , expected_warnings = [], expected_suffix = '7zip' )
0 commit comments