diff options
author | Max Reitz <mreitz@redhat.com> | 2017-11-09 21:30:22 +0100 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2017-11-14 18:06:25 +0100 |
commit | 51c493c5cccdf767f53bc8829fa1a44ce05ffd02 (patch) | |
tree | 1fae425c1e90931364d5278cfdbf7b95b3f2c9c7 | |
parent | dca9b6a2b1536415ce366895b840051ac44c244b (diff) | |
download | qemu-51c493c5cccdf767f53bc8829fa1a44ce05ffd02.zip qemu-51c493c5cccdf767f53bc8829fa1a44ce05ffd02.tar.gz qemu-51c493c5cccdf767f53bc8829fa1a44ce05ffd02.tar.bz2 |
iotests: Add missing 'blkdebug::' in 040
040 tries to invoke pause_drive() on a drive that does not use blkdebug.
Good idea, but let's use blkdebug to make it actually work.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 20171109203025.27493-3-mreitz@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
-rwxr-xr-x | tests/qemu-iotests/040 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/040 b/tests/qemu-iotests/040 index c284d08..90b5b4f 100755 --- a/tests/qemu-iotests/040 +++ b/tests/qemu-iotests/040 @@ -289,7 +289,7 @@ class TestSetSpeed(ImageCommitTestCase): qemu_img('create', '-f', iotests.imgfmt, '-o', 'backing_file=%s' % mid_img, test_img) qemu_io('-f', iotests.imgfmt, '-c', 'write -P 0x1 0 512', test_img) qemu_io('-f', iotests.imgfmt, '-c', 'write -P 0xef 524288 524288', mid_img) - self.vm = iotests.VM().add_drive(test_img) + self.vm = iotests.VM().add_drive('blkdebug::' + test_img) self.vm.launch() def tearDown(self): |