diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-08-05 12:26:35 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-08-05 12:26:35 +0200 |
commit | 3568a640bd363409cdeb1cb69eaa3261c79f2ff2 (patch) | |
tree | 03f428bb0b412809a86e70100461e32545b9dea1 /test/integration/test-hashsum-verification | |
parent | 515d18c9b271e4188dd4c59939c3c3cfeaf575a8 (diff) |
* apt-pkg/acquire-item.cc:
- if no Release.gpg file is found, still load the hashes for
verification (closes: #636314) and add test
Diffstat (limited to 'test/integration/test-hashsum-verification')
-rwxr-xr-x | test/integration/test-hashsum-verification | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/integration/test-hashsum-verification b/test/integration/test-hashsum-verification index 29420c098..033096ee8 100755 --- a/test/integration/test-hashsum-verification +++ b/test/integration/test-hashsum-verification @@ -70,6 +70,13 @@ runtest() { msgtest 'No Packages file in /var/lib/apt/lists' [ "$(ls rootdir/var/lib/apt/lists/*Package* 2>/dev/null)" = "" ] && msgpass || msgfail + # now with the unsigned Release file + rm -rf rootdir/var/lib/apt/lists + rm aptarchive/InRelease aptarchive/Release.gpg + msgtest 'unsigned apt-get update gets the expected hashsum mismatch' + aptget update 2>&1 | grep "Hash Sum mismatch" > /dev/null && msgpass || msgfail + + } runtest |