From e8bd16257c40a5b53ac19c4f8b7669eb41b699e2 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Mon, 27 Dec 2021 20:27:25 +1100 Subject: [PATCH] fs/test.sh: Use go run instead of godo --- fs/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/test.sh b/fs/test.sh index 8f3af5be..c921f4ba 100755 --- a/fs/test.sh +++ b/fs/test.sh @@ -1,12 +1,12 @@ set -eux repopath="$(cd "$(dirname "$0")/.."; pwd)" mkdir -p mnt torrents -GOPPROF=http godo -v "$repopath/cmd/torrentfs" -mountDir=mnt -metainfoDir=torrents & +GOPPROF=http go run -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 pushd torrents cp "$repopath/testdata/$debian_file.torrent" . -godo -v -race "$repopath/cmd/torrent" metainfo "$repopath/testdata/sintel.torrent" magnet > sintel.magnet +go run -v -race "$repopath/cmd/torrent" metainfo "$repopath/testdata/sintel.torrent" magnet > sintel.magnet popd file="$debian_file" # file=sintel.mp4 -- 2.48.1