diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2012-04-11 11:57:48 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2012-04-11 11:57:48 +0200 |
commit | 8bcbc69451bfb00977c16fdb03662c844f6e861e (patch) | |
tree | 06b5eded52faf5820685dd032d7d425b35e847bf /test/integration/framework | |
parent | de97b0a56e3f454cab76aa475f40b10eed88333c (diff) |
use xz-utils in the testcases instead of lzma and ensure that we really
ignore the presents (or absence) of lzma if we decided to use xz
Diffstat (limited to 'test/integration/framework')
-rw-r--r-- | test/integration/framework | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/framework b/test/integration/framework index fa4a98f58..0670d6a78 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -558,7 +558,7 @@ buildaptarchivefromfiles() { msgninfo "\t${line} fileā¦ " cat ${line} | gzip > ${line}.gz cat ${line} | bzip2 > ${line}.bz2 - cat ${line} | lzma > ${line}.lzma + cat ${line} | xz --format=lzma > ${line}.lzma cat ${line} | xz > ${line}.xz msgdone "info" done |