Просмотр исходного кода

qemu-iotest/245: Add missing discard=unmap

The test works since we punch holes by default even when opening the
image without discard=on or discard=unmap. Fix the test to enable
discard.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Nir Soffer 1 год назад
Родитель
Сommit
249d0f8397
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      tests/qemu-iotests/245

+ 1 - 1
tests/qemu-iotests/245

@@ -592,7 +592,7 @@ class TestBlockdevReopen(iotests.QMPTestCase):
     @iotests.skip_if_unsupported(['compress'])
     @iotests.skip_if_unsupported(['compress'])
     def test_insert_compress_filter(self):
     def test_insert_compress_filter(self):
         # Add an image to the VM: hd (raw) -> hd0 (qcow2) -> hd0-file (file)
         # Add an image to the VM: hd (raw) -> hd0 (qcow2) -> hd0-file (file)
-        opts = {'driver': 'raw', 'node-name': 'hd', 'file': hd_opts(0)}
+        opts = {'driver': 'raw', 'node-name': 'hd', 'file': hd_opts(0), 'discard': 'unmap'}
         self.vm.cmd('blockdev-add', conv_keys = False, **opts)
         self.vm.cmd('blockdev-add', conv_keys = False, **opts)
 
 
         # Add a 'compress' filter
         # Add a 'compress' filter