Comment 2 for bug 421044

Revision history for this message
psl (slansky) wrote : Re: zsyncmake doesn't check blocksize parameter well

Simple script to create some test zsync files with different blocksize:

for BS in 32768 16384 8196 4096 2048 1024 512 256 128 64 32 16 8 4 2 1; do
  echo "Blocksize: $BS"
  zsyncmake -b $BS testfile.bin -o testfile.bin.$BS.zsync
  ls -l testfile.bin.$BS.zsync
done