Statistics
| Branch: | Revision:

root / tests / qemu-iotests / 020.out @ 9a05feab

History | View | Annotate | Download (50.2 kB)

# Date Author Comment
c34b8012 11/29/2013 06:41 pm Fam Zheng

qemu-iotests: Filter out 'qemu-io> ' prompt

This removes "qemu-io> " prompt from qemu-io output in _filter_qemu_io,
and updates all the output files with the following command:

cd tests/qemu-iotests && sed -i "s/qemu-io> //g" *.out

Signed-off-by: Fam Zheng <>...

8655d2de 05/10/2012 11:32 am Paolo Bonzini

qemu-io: correctly print non-integer values as decimals

qemu-io's cvtstr function sometimes will incorrectly omit the
decimal part of the number, and sometimes will incorrectly include
it. This patch fixes both. The former is more serious, and can
be seen in the patches to 027.out and 033.out....

dd0c35d6 02/23/2012 11:29 am Stefan Hajnoczi

qemu-iotests: Use zero-based offsets for IO patterns

The io_pattern style functions have the following loop:

for i in `seq 1 $count`; do
echo ... $(( start + i * step )) ...
done

Offsets are 1-based so start=1024, step=512, count=4 yields:
1536, 2048, 2560, 3072...

ed4dc684 02/22/2012 05:17 pm Kevin Wolf

qemu-iotests: test commiting changes to backing file

Signed-off-by: Kevin Wolf <>
Signed-off-by: Christoph Hellwig <>