2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/fs/test.sh
Matt Joiner a0f8f246e5 Add the fs test torrent to the repo
Debian keep moving it.
2017-12-29 13:50:26 +11:00

16 lines
498 B
Bash
Executable File

repopath=$(cd $(dirname $0)/..; pwd)
mkdir mnt torrents
umount mnt
set -e
GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents &
cd torrents
cp "$repopath"/testdata/debian-9.1.0-amd64-netinst.iso.torrent .
echo 'magnet:?xt=urn:btih:6a9759bffd5c0af65319979fb7832189f4f3c35d&dn=sintel.mp4' > sintel.magnet
cd ..
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