From: Matt Joiner Date: Fri, 29 Jun 2018 14:08:01 +0000 (+1000) Subject: Run fs/test.sh in a temporary directory and make it clean up X-Git-Tag: v1.0.0~109 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=716fd43d44d32253257faa73378efd9ba9ac6062;p=btrtrc.git Run fs/test.sh in a temporary directory and make it clean up --- diff --git a/fs/test.sh b/fs/test.sh index e969f5fe..e174f9cb 100755 --- a/fs/test.sh +++ b/fs/test.sh @@ -1,15 +1,17 @@ +set -ex repopath=$(cd $(dirname $0)/..; pwd) +d=$(mktemp -d) +pushd "$d" mkdir mnt torrents -umount mnt -set -e GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents & -cd torrents +trap 'set +e; sudo umount -f mnt; pushd; rm -rv "$d"' EXIT +pushd torrents cp "$repopath"/testdata/debian-9.1.0-amd64-netinst.iso.torrent . echo 'magnet:?xt=urn:btih:6a9759bffd5c0af65319979fb7832189f4f3c35d&dn=sintel.mp4' > sintel.magnet -cd .. +popd file=debian-9.1.0-amd64-netinst.iso # file=sintel.mp4 while [ ! -e "mnt/$file" ]; do sleep 1; done pv "mnt/$file" | md5sum -sudo umount mnt -wait +umount mnt +wait || echo "wait returned" $?