diff options
author | Michael Vogt <mvo@ubuntu.com> | 2015-09-01 11:13:48 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2015-09-01 11:29:49 +0200 |
commit | 55ae7a516126f9f064d8353bf962256b7307590a (patch) | |
tree | 14c91251fa81c61c4ab26994036213b6ee24f61c /test/integration/framework | |
parent | 226c0f64d46019d675840b16bd44ff985b45ad0f (diff) |
Consider md5sum no longer a usable hash
The md5sum hash is broken since some time and we should no longer
consider it a usable hash. Also update the tests to reflect this.
Diffstat (limited to 'test/integration/framework')
-rw-r--r-- | test/integration/framework | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/framework b/test/integration/framework index 182bec2e4..ec5d7c491 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -852,6 +852,9 @@ Architecture: $ARCH" >> $FILE echo "Files: $(echo -n "$DSCFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) $DSCFILE $(echo -n "$TARFILE" | md5sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) $TARFILE +Checksums-Sha256: + $(echo -n "$DSCFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$DSCFILE" | wc -c) $DSCFILE + $(echo -n "$TARFILE" | sha256sum | cut -d' ' -f 1) $(echo -n "$TARFILE" | wc -c) $TARFILE " >> $FILE } |