From: Jens Axboe Date: Thu, 18 Aug 2016 16:03:49 +0000 (-0600) Subject: Add basic write/read-and-verify example job file X-Git-Tag: fio-2.14~26 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=ac83dc96f7d10ac8810c59a38d8c495e996e4cf0 Add basic write/read-and-verify example job file Signed-off-by: Jens Axboe --- diff --git a/examples/basic-verify.fio b/examples/basic-verify.fio new file mode 100644 index 00000000..7871aeb9 --- /dev/null +++ b/examples/basic-verify.fio @@ -0,0 +1,12 @@ +# The most basic form of data verification. Write the device randomly +# in 4K chunks, then read it back and verify the contents. +[write-and-verify] +rw=randwrite +bs=4k +direct=1 +ioengine=libaio +iodepth=16 +verify=crc32c +# Use /dev/XXX. For running this on a file instead, remove the filename +# option and add a size=32G (or whatever file size you want) instead. +filename=/dev/XXX