Statistics
| Branch: | Revision:

root / tests / qemu-iotests @ a8aec295

Name Size
.gitignore 95 Bytes
001 1.5 kB
001.out 472 Bytes
002 2.5 kB
002.out 1.9 kB
003 1.8 kB
003.out 713 Bytes
004 2.2 kB
004.out 947 Bytes
005 1.8 kB
005.out 327 Bytes
006 1.2 kB
006.out 178 Bytes
007 1.5 kB
007.out 260 Bytes
008 1.5 kB
008.out 472 Bytes
009 1.4 kB
009.out 566 Bytes
010 1.5 kB
010.out 757 Bytes
011 1.7 kB
011.out 2.1 kB
012 1.4 kB
012.out 238 Bytes
013 2.3 kB
013.out 2.2 MB
014 1.8 kB
014.out 3.2 MB
015 2.4 kB
015.out 658 Bytes
016 1.7 kB
016.out 783 Bytes
017 2.4 kB
017.out 54.9 kB
018 2.5 kB
018.out 54.9 kB
019 3.4 kB
019.out 82.6 kB
020 2.5 kB
020.out 54.9 kB
021 1.5 kB
021.out 1.9 kB
022 1.5 kB
022.out 452.6 kB
023 2.8 kB
023.out 1.3 MB
024 4.2 kB
024.out 6.2 kB
025 1.7 kB
025.out 779 Bytes
026 3.9 kB
026.out 22.9 kB
027 2.2 kB
027.out 764 Bytes
028 2.5 kB
028.out 24.3 kB
029 1.6 kB
029.out 404 Bytes
030 19.1 kB
030.out 102 Bytes
031 2 kB
031.out 5.4 kB
032 1.8 kB
032.out 3.7 kB
033 1.9 kB
033.out 1 kB
034 3.4 kB
034.out 3.3 kB
035 1.6 kB
035.out 19.3 kB
036 1.6 kB
036.out 1.4 kB
037 3.6 kB
037.out 32.3 kB
038 3.1 kB
038.out 46.9 kB
039 3.4 kB
039.out 2 kB
040 11.7 kB
040.out 105 Bytes
041 26.4 kB
041.out 113 Bytes
042 1.7 kB
042.out 351 Bytes
043 2.3 kB
043.out 2.3 kB
044 3.7 kB
044.out 234 Bytes
045 5.3 kB
045.out 94 Bytes
046 5.7 kB
046.out 12 kB
047 1.6 kB
047.out 1.1 kB
048 1.7 kB
048.out 992 Bytes
049 3.3 kB
049.out 10.9 kB
050 1.8 kB
050.out 673 Bytes
051 4.4 kB
051.out 7.8 kB
052 1.5 kB
052.out 470 Bytes
053 1.7 kB
053.out 498 Bytes
054 1.3 kB
054.out 400 Bytes
055 9.5 kB
055.out 102 Bytes
COPYING 17.6 kB
Makefile 113 Bytes
README 693 Bytes
check 6 kB
common 7.1 kB
common.config 3.4 kB
common.filter 3.9 kB
common.pattern 4.8 kB
common.rc 9.1 kB
group 1 kB
iotests.py 9.2 kB
qcow2.py 7.1 kB
qed.py 7 kB

Latest revisions

# Date Author Comment
0dbe8a1b 06/28/2013 10:20 am Stefan Hajnoczi

qemu-iotests: extract wait_until_completed() into iotests.py

The 'drive-mirror' tests often issue 'block-job-complete' and wait for
the QMP completion event. Other types of block jobs also want to wait
for completion but they may not need to issue 'block-job-complete'....

e5ca8fdd 06/28/2013 10:20 am Stefan Hajnoczi

qemu-iotests: add 055 drive-backup test case

Testing drive-backup is similar to image streaming and drive mirroring.
This test case is based on 041.

Signed-off-by: Stefan Hajnoczi <>
Signed-off-by: Kevin Wolf <>

492fdc6f 06/24/2013 11:25 am Kevin Wolf

Revert "block: Disable driver-specific options for 1.5"

This reverts commit 8ec7d390b0d50b5e5b4b1d8dba7ba40d64a70875.

Signed-off-by: Kevin Wolf <>
Signed-off-by: Stefan Hajnoczi <>

5e00984a 06/06/2013 12:27 pm Kevin Wolf

cutils: Support 'P' and 'E' suffixes in strtosz()

Signed-off-by: Kevin Wolf <>
Reviewed-by: Eric Blake <>
Signed-off-by: Stefan Hajnoczi <>

ecc1c88e 06/04/2013 01:11 pm Stefan Hajnoczi

qemu-iotests: make assert_no_active_block_jobs() common

Tests 030 and 041 both use query-block-jobs to check whether any block
jobs are active. Make this code common so that 'drive-backup' and other
new feature tests will be able to reuse it.

Suggested-by: Kevin Wolf <>...

2575fe16 06/04/2013 01:11 pm Stefan Hajnoczi

qemu-iotests: make cancel_and_wait() common

The cancel_and_wait() function has been duplicated in 030 and 041. Move
it into iotests.py and let it return the event so tests can perform
additional asserts.

Note that 041's cancel_and_wait(wait_ready=True) is replaced by...

3a3918c3 06/04/2013 01:11 pm Stefan Hajnoczi

qemu-iotests: make compare_images() common

The iotests.compare_images() function returns True if two image files
have the identical data. Previously this was implemented by converting
images to raw and then comparing their contents using Python. Since
"qemu-img compare" is now available and is more efficient, switch to it....

2499a096 06/04/2013 01:11 pm Stefan Hajnoczi

qemu-iotests: make create_image() common

Both 030 and 041 use create_image(). Move it to iotests.py.

Also drop ImageStreamingTestCase since the class now has no methods.

Suggested-by: Kevin Wolf <>
Signed-off-by: Stefan Hajnoczi <>...

8ddd08c5 06/04/2013 01:11 pm Stefan Hajnoczi

qemu-iotests: fix 054 cluster size help output

Commit f3f4d2c09b9cf46903ba38425ec46c44185162bd added a hint to increase
the cluster size when a large image cannot be created. Test 054 now has
outdated output and fails because the golden output does not match....

04129606 05/29/2013 04:16 pm Stefan Hajnoczi

tests: set MALLOC_PERTURB_ to expose memory bugs

glibc wipes malloc(3) memory when the MALLOC_PERTURB_ environment
variable is set. The value of the environment variable determines the
bit pattern used to wipe memory. For more information, see
http://udrepper.livejournal.com/11429.html....

View revisions

Also available in: Atom