mirror of
https://github.com/vbatts/tar-split.git
synced 2024-11-16 13:28:37 +00:00
25 lines
581 B
Bash
25 lines
581 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
name=$(basename $0)
|
||
|
root=$1
|
||
|
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}
|