diff options
author | David Kalnischkies <david@kalnischkies.de> | 2018-01-15 12:04:45 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2018-05-11 18:28:29 +0200 |
commit | ed0e9eadeb3003f4f150da3c463b28cfa5e54b6f (patch) | |
tree | 9921b5bd7b3896cb725d85b30456d03d2f9fcc16 /test | |
parent | 2d6c6c8809c7b4c1a009df48387ba15066fda7e2 (diff) |
Handle by-hash URI construction more centrally
Individual items shouldn't concern themselves with these alternative
locations, we can deal with this more efficiently within the
infrastructure created for other alternative URIs now avoiding the need
to implement this in each item.
Diffstat (limited to 'test')
-rwxr-xr-x | test/integration/test-pdiff-usage | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/integration/test-pdiff-usage b/test/integration/test-pdiff-usage index eec384573..7cda2ee45 100755 --- a/test/integration/test-pdiff-usage +++ b/test/integration/test-pdiff-usage @@ -138,6 +138,8 @@ SHA256-Download: mkdir -p "${BYHASH}" find "${NORMAL}/" -maxdepth 1 -name "Index*" -exec mv '{}' "$BYHASH" \; ln -s "${BYHASH}/Index.gz" "${BYHASH}/$(sha256sum "${BYHASH}/Index.gz" | cut -f1 -d' ')" + echo 'foobar' > "${BYHASH}/$(sha256sum "$PATCHFILE" | cut -f1 -d' ')" + echo 'foobar' > "${BYHASH}/$(sha256sum "${PATCHFILE}.gz" | cut -f1 -d' ')" rm -rf rootdir/var/lib/apt/lists cp -a rootdir/var/lib/apt/lists-bak rootdir/var/lib/apt/lists wasmergeused "$@" -o Acquire::By-Hash=force |