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