Vincent Batts
f49f66f61e
This cleans up the Makefile target, and drops the dependency to point to the $root path of the repo. Fixes https://github.com/vbatts/go-mtree/issues/98 Reported-by: Aleksa Sarai <asarai@suse.de> Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
24 lines
616 B
Bash
24 lines
616 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
name=$(basename $0)
|
|
root="$(dirname $(dirname $(dirname $0)))"
|
|
gomtree=$(readlink -f ${root}/gomtree)
|
|
t=$(mktemp -d /tmp/go-mtree.XXXXXX)
|
|
|
|
echo "[${name}] Running in ${t}"
|
|
# This test is for basic running check of manifest, and check against tar and file system
|
|
#
|
|
|
|
pushd ${root}
|
|
|
|
# Create a symlink with spaces in the entries.
|
|
mkdir ${t}/root
|
|
ln -s "this is a dummy symlink" ${t}/root/link
|
|
|
|
# Create manifest and check it against the same symlink.
|
|
${gomtree} -K link,sha256digest -c -p ${t}/root > ${t}/root.mtree
|
|
${gomtree} -K link,sha256digest -f ${t}/root.mtree -p ${t}/root
|
|
|
|
popd
|
|
rm -rf ${t}
|