]> Sergey Matveev's repositories - btrtrc.git/commitdiff
fs/test.sh: Fail if hash does not match
authorMatt Joiner <anacrolix@gmail.com>
Wed, 9 Feb 2022 22:20:23 +0000 (09:20 +1100)
committerMatt Joiner <anacrolix@gmail.com>
Wed, 9 Feb 2022 22:20:23 +0000 (09:20 +1100)
fs/test.sh

index bcd5064e6ec1a697d66dedd73c7d1d2366fe035c..4e0aebc9b6fb43e6f64cc054cfa03719076e2f2a 100755 (executable)
@@ -13,7 +13,8 @@ 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" $?