]> Sergey Matveev's repositories - btrtrc.git/blob - fs/test.sh
fs/test.sh: Add sudo before happy path umount again
[btrtrc.git] / fs / test.sh
1 set -ex
2 repopath=$(cd $(dirname $0)/..; pwd)
3 d=$(mktemp -d)
4 pushd "$d"
5 mkdir mnt torrents
6 GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents &
7 trap 'set +e; sudo umount -f mnt; pushd; rm -rv "$d"' EXIT
8 pushd torrents
9 cp "$repopath"/testdata/debian-9.1.0-amd64-netinst.iso.torrent .
10 echo 'magnet:?xt=urn:btih:6a9759bffd5c0af65319979fb7832189f4f3c35d&dn=sintel.mp4' > sintel.magnet
11 popd
12 file=debian-9.1.0-amd64-netinst.iso
13 # file=sintel.mp4
14 while [ ! -e "mnt/$file" ]; do sleep 1; done
15 pv "mnt/$file" | md5sum
16 sudo umount mnt
17 wait || echo "wait returned" $?