Re: [Qemu-devel] [PATCH v2 08/11] qemu-iotests/124: Avoid blockdev-add with id

2016-09-20 Thread Eric Blake
On 09/20/2016 08:03 AM, Kevin Wolf wrote:
> We want to remove the 'id' option for blockdev-add. This removes one
> user of the option and makes it use only node names.
> 
> Signed-off-by: Kevin Wolf 
> ---
>  tests/qemu-iotests/124 | 17 ++---
>  1 file changed, 10 insertions(+), 7 deletions(-)
> 
> diff --git a/tests/qemu-iotests/124 b/tests/qemu-iotests/124
> index de7cdbe..33525bf 100644
> --- a/tests/qemu-iotests/124
> +++ b/tests/qemu-iotests/124
> @@ -49,8 +49,8 @@ def transaction_bitmap_clear(node, name, **kwargs):
>  
>  
>  def transaction_drive_backup(device, target, **kwargs):
> -return transaction_action('drive-backup', device=device, target=target,
> -  **kwargs)
> +return transaction_action('drive-backup', job_id= device, device=device,

Umm, why the whitespace after =?

pep8 already complains about this (and other) pythonic iotests, but no
need to make it noisier :)

With that fixed,
Reviewed-by: Eric Blake 

-- 
Eric Blake   eblake redhat com+1-919-301-3266
Libvirt virtualization library http://libvirt.org



signature.asc
Description: OpenPGP digital signature


[Qemu-devel] [PATCH v2 08/11] qemu-iotests/124: Avoid blockdev-add with id

2016-09-20 Thread Kevin Wolf
We want to remove the 'id' option for blockdev-add. This removes one
user of the option and makes it use only node names.

Signed-off-by: Kevin Wolf 
---
 tests/qemu-iotests/124 | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/tests/qemu-iotests/124 b/tests/qemu-iotests/124
index de7cdbe..33525bf 100644
--- a/tests/qemu-iotests/124
+++ b/tests/qemu-iotests/124
@@ -49,8 +49,8 @@ def transaction_bitmap_clear(node, name, **kwargs):
 
 
 def transaction_drive_backup(device, target, **kwargs):
-return transaction_action('drive-backup', device=device, target=target,
-  **kwargs)
+return transaction_action('drive-backup', job_id= device, device=device,
+  target=target, **kwargs)
 
 
 class Bitmap:
@@ -177,7 +177,8 @@ class TestIncrementalBackupBase(iotests.QMPTestCase):
 def create_anchor_backup(self, drive=None):
 if drive is None:
 drive = self.drives[-1]
-res = self.do_qmp_backup(device=drive['id'], sync='full',
+res = self.do_qmp_backup(job_id=drive['id'],
+ device=drive['id'], sync='full',
  format=drive['fmt'], target=drive['backup'])
 self.assertTrue(res)
 self.files.append(drive['backup'])
@@ -188,7 +189,8 @@ class TestIncrementalBackupBase(iotests.QMPTestCase):
 if bitmap is None:
 bitmap = self.bitmaps[-1]
 _, reference = bitmap.last_target()
-res = self.do_qmp_backup(device=bitmap.drive['id'], sync='full',
+res = self.do_qmp_backup(job_id=bitmap.drive['id'],
+ device=bitmap.drive['id'], sync='full',
  format=bitmap.drive['fmt'], target=reference)
 self.assertTrue(res)
 
@@ -221,7 +223,8 @@ class TestIncrementalBackupBase(iotests.QMPTestCase):
 parent, _ = bitmap.last_target()
 
 target = self.prepare_backup(bitmap, parent)
-res = self.do_qmp_backup(device=bitmap.drive['id'],
+res = self.do_qmp_backup(job_id=bitmap.drive['id'],
+ device=bitmap.drive['id'],
  sync='incremental', bitmap=bitmap.name,
  format=bitmap.drive['fmt'], target=target,
  mode='existing')
@@ -414,7 +417,7 @@ class TestIncrementalBackup(TestIncrementalBackupBase):
 
 # Create a blkdebug interface to this img as 'drive1'
 result = self.vm.qmp('blockdev-add', options={
-'id': drive1['id'],
+'node-name': drive1['id'],
 'driver': drive1['fmt'],
 'file': {
 'driver': 'blkdebug',
@@ -558,7 +561,7 @@ class 
TestIncrementalBackupBlkdebug(TestIncrementalBackupBase):
 
 drive0 = self.drives[0]
 result = self.vm.qmp('blockdev-add', options={
-'id': drive0['id'],
+'node-name': drive0['id'],
 'driver': drive0['fmt'],
 'file': {
 'driver': 'blkdebug',
-- 
1.8.3.1