summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-02-22 12:50:47 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-02-22 12:50:47 +0100
commitbc33e0f0b6b1fdb010dcd4a49a78b827530052aa (patch)
tree210d986981e3959b46ddb79744f3a68ea963b689 /test
parent0ff1a4556c0a0fb76ce48e88031eff2b4d613c5e (diff)
* ftparchive/multicompress.cc, apt-inst/deb/debfile.cc:
- support xz compressor to create xz-compressed Indexes and be able to open data.tar.xz files
Diffstat (limited to 'test')
-rw-r--r--test/integration/framework8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/integration/framework b/test/integration/framework
index 2422f0886..6545cf3ce 100644
--- a/test/integration/framework
+++ b/test/integration/framework
@@ -251,9 +251,9 @@ createaptftparchiveconfig() {
echo -n '";
};
Default {
- Packages::Compress ". gzip bzip2 lzma";
- Sources::Compress ". gzip bzip2 lzma";
- Contents::Compress ". gzip bzip2 lzma";
+ Packages::Compress ". gzip bzip2 lzma xz";
+ Sources::Compress ". gzip bzip2 lzma xz";
+ Contents::Compress ". gzip bzip2 lzma xz";
};
TreeDefault {
Directory "pool/";
@@ -332,6 +332,7 @@ buildaptarchivefromfiles() {
cat Packages | gzip > Packages.gz
cat Packages | bzip2 > Packages.bz2
cat Packages | lzma > Packages.lzma
+ cat Packages | xz > Packages.xz
msgdone "info"
fi
if [ -f Sources ]; then
@@ -339,6 +340,7 @@ buildaptarchivefromfiles() {
cat Sources | gzip > Sources.gz
cat Sources | bzip2 > Sources.bz2
cat Sources | lzma > Sources.lzma
+ cat Sources | xz > Sources.xz
msgdone "info"
fi
msgninfo "\tRelease fileā€¦ "