diff options
author | Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> | 2023-10-06 18:41:18 +0300 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2023-10-12 14:21:44 -0400 |
commit | f7ccc3295b3d7c49d4a7a3d42242cd5b50111e35 (patch) | |
tree | 51f9fc28d84a2a477809d918f07debce772b450d /tests/qemu-iotests/152 | |
parent | 3a8736cf1e069c2b93c194d71062f911ff2571e7 (diff) | |
download | qemu-f7ccc3295b3d7c49d4a7a3d42242cd5b50111e35.zip qemu-f7ccc3295b3d7c49d4a7a3d42242cd5b50111e35.tar.gz qemu-f7ccc3295b3d7c49d4a7a3d42242cd5b50111e35.tar.bz2 |
iotests: add some missed checks of qmp result
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 20231006154125.1068348-9-vsementsov@yandex-team.ru
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/152')
-rwxr-xr-x | tests/qemu-iotests/152 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/qemu-iotests/152 b/tests/qemu-iotests/152 index 4e179c3..b73a0d0 100755 --- a/tests/qemu-iotests/152 +++ b/tests/qemu-iotests/152 @@ -43,6 +43,7 @@ class TestUnaligned(iotests.QMPTestCase): def test_unaligned(self): result = self.vm.qmp('drive-mirror', device='drive0', sync='full', granularity=65536, target=target_img) + self.assert_qmp(result, 'return', {}) self.complete_and_wait() self.vm.shutdown() self.assertEqual(iotests.image_size(test_img), iotests.image_size(target_img), @@ -51,6 +52,7 @@ class TestUnaligned(iotests.QMPTestCase): def test_unaligned_with_update(self): result = self.vm.qmp('drive-mirror', device='drive0', sync='full', granularity=65536, target=target_img) + self.assert_qmp(result, 'return', {}) self.wait_ready() self.vm.hmp_qemu_io('drive0', 'write 0 512') self.complete_and_wait(wait_ready=False) |