summaryrefslogtreecommitdiff
path: root/test/other_tools/utils/archive_usage.test.cpp
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-08-14 11:05:34 +0200
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-08-14 15:09:11 +0200
commitd95a7a4bb8d00a2e994bee82f4f64b2ed1d9ec12 (patch)
treea58225968a9717887a774a0467933bde58129f1b /test/other_tools/utils/archive_usage.test.cpp
parent65886ff172190648c1114a9953c154f3f4821119 (diff)
downloadjustbuild-d95a7a4bb8d00a2e994bee82f4f64b2ed1d9ec12.tar.gz
just-mr archives: Add 7zip support via autodetection option
Similarly to tarballs, an autodetection option for zip-like archives is added to enable a unified handling of both traditional zip and 7zip formats. Thus, for "zip" archives just-mr uses now this autodetection option.
Diffstat (limited to 'test/other_tools/utils/archive_usage.test.cpp')
-rw-r--r--test/other_tools/utils/archive_usage.test.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/other_tools/utils/archive_usage.test.cpp b/test/other_tools/utils/archive_usage.test.cpp
index 542f05e1..09d080c5 100644
--- a/test/other_tools/utils/archive_usage.test.cpp
+++ b/test/other_tools/utils/archive_usage.test.cpp
@@ -256,6 +256,7 @@ void enable_write_format_and_filter(archive* aw, ArchiveType type) {
REQUIRE(archive_write_set_format_pax_restricted(aw) == ARCHIVE_OK);
REQUIRE(archive_write_add_filter_lzma(aw) == ARCHIVE_OK);
} break;
+ case ArchiveType::ZipAuto:
case ArchiveType::TarAuto:
return; // unused
}
@@ -292,6 +293,7 @@ void enable_read_format_and_filter(archive* ar, ArchiveType type) {
REQUIRE(archive_read_support_format_tar(ar) == ARCHIVE_OK);
REQUIRE(archive_read_support_filter_lzma(ar) == ARCHIVE_OK);
} break;
+ case ArchiveType::ZipAuto:
case ArchiveType::TarAuto:
return; // unused
}