]> Sergey Matveev's repositories - btrtrc.git/commitdiff
fs/test.sh: Add torrents before mounting
authorMatt Joiner <anacrolix@gmail.com>
Mon, 31 Jan 2022 06:35:20 +0000 (17:35 +1100)
committerMatt Joiner <anacrolix@gmail.com>
Mon, 31 Jan 2022 06:35:53 +0000 (17:35 +1100)
fs/test.sh

index ea5787aa5dfbf80b5a4d202c8d4e867b3d5eebc8..bcd5064e6ec1a697d66dedd73c7d1d2366fe035c 100755 (executable)
@@ -1,13 +1,15 @@
 set -eux
 repopath="$(cd "$(dirname "$0")/.."; pwd)"
-mkdir -p mnt torrents
-GOPPROF=http godo -v "$repopath/cmd/torrentfs" -mountDir=mnt -metainfoDir=torrents &
-trap 'set +e; sudo umount -f mnt' EXIT
 debian_file=debian-10.8.0-amd64-netinst.iso
+mkdir -p mnt torrents
+# I think the timing can cause torrents to not get added correctly to the torrentfs client, so add
+# 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
 popd
+GOPPROF=http godo -v "$repopath/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