The file-existing subtest fails on platforms with large native page
sizes (e.g. 64 KiB on aarch64) because the 40 KiB swap image is
too small. Add -p 4096 to match the other subtests.
Signed-off-by: Karel Zak <kzak@redhat.com>
outimg="$TS_OUTDIR/existing.img"
rm -f "$outimg"
-"$TS_CMD_MKSWAP" -q -U "$UUID" -F -s $((4096 * 10)) "$outimg" \
+"$TS_CMD_MKSWAP" -q -U "$UUID" -p 4096 -F -s $((4096 * 10)) "$outimg" \
>> "$TS_OUTPUT" 2>/dev/null \
|| ts_log "mkswap failed"
-"$TS_CMD_MKSWAP" -q -U "$UUID" -F -s $((4096 * 10)) "$outimg" \
+"$TS_CMD_MKSWAP" -q -U "$UUID" -p 4096 -F -s $((4096 * 10)) "$outimg" \
>> "$TS_OUTPUT" 2>&1 \
|| ts_log "mkswap -F failed on existing file"