]> Sergey Matveev's repositories - btrtrc.git/blobdiff - fs/test.sh
fs: Update path to torrentfs
[btrtrc.git] / fs / test.sh
index bcd5064e6ec1a697d66dedd73c7d1d2366fe035c..93bfbdc52e52b5f84ef6ef29a99fda36949605dc 100755 (executable)
@@ -6,14 +6,15 @@ mkdir -p mnt torrents
 # them first and start the fs afterwards.
 pushd torrents
 cp "$repopath/testdata/$debian_file.torrent" .
-godo -v "$repopath/cmd/torrent" metainfo "$repopath/testdata/sintel.torrent" magnet > sintel.magnet
+godo -v -- "$repopath/cmd/torrent" metainfo "$repopath/testdata/sintel.torrent" magnet > sintel.magnet
 popd
-GOPPROF=http godo -v "$repopath/cmd/torrentfs" -mountDir=mnt -metainfoDir=torrents &
+GOPPROF=http godo -v -- "$repopath/fs/cmd/torrentfs" -mountDir=mnt -metainfoDir=torrents &
 trap 'set +e; sudo umount -f mnt' EXIT
 #file="$debian_file"
 file=Sintel/Sintel.mp4
 while [ ! -e "mnt/$file" ]; do sleep 1; done
-pv -f "mnt/$file" | md5sum
-# expect e221f43f4fdd409250908fc4305727d4
+pv -f "mnt/$file" | md5sum -c <(cat <<EOF
+083e808d56aa7b146f513b3458658292  -
+EOF)
 sudo umount mnt
 wait || echo "wait returned" $?