diff options
author | Julian Andres Klode <jak@debian.org> | 2016-03-13 12:21:09 +0100 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-03-13 13:01:14 +0100 |
commit | 51c04562559d0924aa52cc8c9b69901bc8a5c945 (patch) | |
tree | f31a91a41932f61a444c39374afadf43a3484bed /test/integration/test-partial-file-support | |
parent | e457c94165c9c4dfef8cea7c2f716700d1c84b3f (diff) |
Do not consider SHA1 usable
SHA1 is not reasonably secure anymore, so we should not consider it
usable anymore. The test suite is adjusted to account for this.
Diffstat (limited to 'test/integration/test-partial-file-support')
-rwxr-xr-x | test/integration/test-partial-file-support | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/test-partial-file-support b/test/integration/test-partial-file-support index 8cfc3f2d3..e2d2743b3 100755 --- a/test/integration/test-partial-file-support +++ b/test/integration/test-partial-file-support @@ -80,7 +80,7 @@ followuprequest() { webserverconfig 'aptwebserver::support::content-range' 'false' copysource $TESTFILE 1M $DOWN - testdownloadfile 'completely downloaded file' "${1}/testfile" "$DOWN" '=' "SHA1:$(sha1sum "$TESTFILE" | cut -d' ' -f 1)" + testdownloadfile 'completely downloaded file' "${1}/testfile" "$DOWN" '=' "SHA256:$(sha256sum "$TESTFILE" | cut -d' ' -f 1)" testwebserverlaststatuscode '416' "$DOWNLOADLOG" webserverconfig 'aptwebserver::support::content-range' 'true' |