diff options
author | Michael Vogt <mvo@debian.org> | 2014-08-01 17:20:19 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-08-01 17:20:19 +0200 |
commit | 67f2f9e2ed2f48833926abb7c31cca4a57ebfec1 (patch) | |
tree | 6f486f1cb1dfc497f0de40818e701ae7ef82cbfb /test/integration | |
parent | 183160cb20cd4aa86e78657bf060bf688edce703 (diff) |
add gzip test and todo
Diffstat (limited to 'test/integration')
-rwxr-xr-x | test/integration/test-apt-update-rollback | 4 | ||||
-rwxr-xr-x | test/integration/test-hashsum-verification | 12 |
2 files changed, 14 insertions, 2 deletions
diff --git a/test/integration/test-apt-update-rollback b/test/integration/test-apt-update-rollback index 24027787e..ccd7f57ff 100755 --- a/test/integration/test-apt-update-rollback +++ b/test/integration/test-apt-update-rollback @@ -185,6 +185,10 @@ APTARCHIVE_LISTS="$(echo $APTARCHIVE | tr "/" "_" )" # going from Release/Release.gpg -> InRelease and vice versa # - unauthenticated -> invalid InRelease +# stuff to do: +# - ims-hit +# - gzip-index tests + test_inrelease_to_new_inrelease test_inrelease_to_broken_hash_reverts_all test_inreleae_to_valid_release diff --git a/test/integration/test-hashsum-verification b/test/integration/test-hashsum-verification index e77efb46e..70bf1b476 100755 --- a/test/integration/test-hashsum-verification +++ b/test/integration/test-hashsum-verification @@ -75,5 +75,13 @@ runtest() { } -runtest - +for COMPRESSEDINDEXES in 'false' 'true'; do + echo "Acquire::GzipIndexes \"$COMPRESSEDINDEXES\";" > rootdir/etc/apt/apt.conf.d/compressindexes + if $COMPRESSEDINDEXES; then + msgmsg 'Run tests with GzipIndexes enabled' + else + msgmsg 'Run tests with GzipIndexes disabled' + fi + + runtest +done |