diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-05-08 16:51:58 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-05-10 11:01:59 +0200 |
commit | efcc7a23242dd0fa05932383cf35c068d16e6bbf (patch) | |
tree | df2f038701b076624b4192a8dc14ee1844ae7842 /tests/qemu-iotests/030 | |
parent | b21d677ee9efe431a4acc653a8cfb12650e44cec (diff) | |
download | qemu-efcc7a23242dd0fa05932383cf35c068d16e6bbf.tar.gz qemu-efcc7a23242dd0fa05932383cf35c068d16e6bbf.tar.bz2 qemu-efcc7a23242dd0fa05932383cf35c068d16e6bbf.zip |
stream: do not copy unallocated sectors from the base
Unallocated sectors should really never be accessed by the guest,
so there's no need to copy them during the streaming process.
If they are read by the guest during streaming, guest-initiated
copy-on-read will copy them (we're in the base == NULL case, which
enables copy on read). If they are read after we disconnect the
image from the base, they will read as zeroes anyway.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/030')
-rwxr-xr-x | tests/qemu-iotests/030 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/qemu-iotests/030 b/tests/qemu-iotests/030 index 277a98be72..eb7bf996d1 100755 --- a/tests/qemu-iotests/030 +++ b/tests/qemu-iotests/030 @@ -83,8 +83,9 @@ class TestSingleDrive(ImageStreamingTestCase): self.assert_no_active_streams() self.vm.shutdown() - self.assertFalse('sectors not allocated' in qemu_io('-c', 'map', test_img), - 'image file not fully populated after streaming') + self.assertEqual(qemu_io('-c', 'map', backing_img), + qemu_io('-c', 'map', test_img), + 'image file map does not match backing file after streaming') def test_stream_partial(self): self.assert_no_active_streams() |