diff options
author | David Kalnischkies <david@kalnischkies.de> | 2016-01-03 22:39:46 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-01-08 15:40:01 +0100 |
commit | 912a61312a0463b46d6560756c89146f59daaab6 (patch) | |
tree | 770ecd89e387f7230348be1df33919f817f8d20f /test/integration/test-bug-595691-empty-and-broken-archive-files | |
parent | 4e3c5633b1e74b4f58b95f339cfbbf4cbf21ab3e (diff) |
tests: try to pick up compressors from config automatically
Less hardcoding should help while introducing new compressors.
Git-Dch: Ignore
Diffstat (limited to 'test/integration/test-bug-595691-empty-and-broken-archive-files')
-rwxr-xr-x | test/integration/test-bug-595691-empty-and-broken-archive-files | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/test-bug-595691-empty-and-broken-archive-files b/test/integration/test-bug-595691-empty-and-broken-archive-files index c216918c5..c329b76d2 100755 --- a/test/integration/test-bug-595691-empty-and-broken-archive-files +++ b/test/integration/test-bug-595691-empty-and-broken-archive-files @@ -76,9 +76,9 @@ W: Failed to fetch store:$(readlink -f rootdir/var/lib/apt/lists/partial/localho E: Some index files failed to download. They have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over http" } -for COMPRESSOR in 'gzip' 'bzip2' 'lzma' 'xz'; do testoverfile $COMPRESSOR; done +forallsupportedcompressors testoverfile # do the same again with http instead of file changetowebserver -for COMPRESSOR in 'gzip' 'bzip2' 'lzma' 'xz'; do testoverhttp $COMPRESSOR; done +forallsupportedcompressors testoverhttp |