From 1a5e0ef7c97cc50be7db0a1892a91110e538d46b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 7 Sep 2020 20:52:54 +0200 Subject: [PATCH] test/test_archive_iso9660.sh: use an odd chunk size to trigger bug This makes the unit test fail. D'oh! --- test/test_archive_iso9660.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test_archive_iso9660.sh b/test/test_archive_iso9660.sh index 5658f7a98..fc999bd47 100755 --- a/test/test_archive_iso9660.sh +++ b/test/test_archive_iso9660.sh @@ -7,4 +7,7 @@ DST="$(pwd)/test/tmp/${SRC_BASE}.iso" mkdir -p test/tmp rm -f "$DST" 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" -