test/test_archive_iso9660.sh: use an odd chunk size to trigger bug

This makes the unit test fail.  D'oh!
This commit is contained in:
Max Kellermann 2020-09-07 20:52:54 +02:00
parent 979a7a1dcc
commit 1a5e0ef7c9
1 changed files with 4 additions and 1 deletions

View File

@ -7,4 +7,7 @@ DST="$(pwd)/test/tmp/${SRC_BASE}.iso"
mkdir -p test/tmp mkdir -p test/tmp
rm -f "$DST" rm -f "$DST"
mkisofs -quiet -l -o "$DST" "$SRC" mkisofs -quiet -l -o "$DST" "$SRC"
./test/run_input "$DST/${SRC_BASE}" |diff "$SRC" -
# Using an odd chunk size to check whether the plugin can cope with
# partial sectors
./test/run_input --chunk-size=1337 "$DST/${SRC_BASE}" |diff "$SRC" -