[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [XENAPI] Remove some deprecated fields from the Xen API test script.
# HG changeset patch # User Alastair Tse <atse@xxxxxxxxxxxxx> # Date 1170256000 0 # Node ID 85e8d7b8360ab7c6e808d4d6d35dfb2ef8669504 # Parent 0c91fd1c92c7001a6e08fe6a8bb2acda7375454c [XENAPI] Remove some deprecated fields from the Xen API test script. Signed-off-by: Alastair Tse <atse@xxxxxxxxxxxxx> --- tools/python/scripts/test_hvm_create.py | 9 ++------- tools/python/scripts/test_vm_create.py | 11 +++-------- 2 files changed, 5 insertions(+), 15 deletions(-) diff -r 0c91fd1c92c7 -r 85e8d7b8360a tools/python/scripts/test_hvm_create.py --- a/tools/python/scripts/test_hvm_create.py Wed Jan 31 15:05:58 2007 +0000 +++ b/tools/python/scripts/test_hvm_create.py Wed Jan 31 15:06:40 2007 +0000 @@ -13,16 +13,11 @@ vm_cfg = { 'VCPUs_policy': 'credit', - 'VCPUs_params': '', + 'VCPUs_params': {}, 'VCPUs_number': 2, - 'VCPUs_features_required': '', - 'VCPUs_features_can_use': '', - 'VCPUs_features_force_on': '', - 'VCPUs_features_force_off': '', 'actions_after_shutdown': 'destroy', 'actions_after_reboot': 'restart', - 'actions_after_suspend': 'destroy', 'actions_after_crash': 'destroy', 'PV_bootloader': '', @@ -44,7 +39,7 @@ local_vdi_cfg = { local_vdi_cfg = { 'name_label': 'gentoo.hvm', 'name_description': '', - 'uri': 'file:/root/gentoo.amd64.hvm.img', + 'location': 'file:/root/gentoo.amd64.hvm.img', 'virtual_size': 0, 'sector_size': 0, 'type': 'system', diff -r 0c91fd1c92c7 -r 85e8d7b8360a tools/python/scripts/test_vm_create.py --- a/tools/python/scripts/test_vm_create.py Wed Jan 31 15:05:58 2007 +0000 +++ b/tools/python/scripts/test_vm_create.py Wed Jan 31 15:06:40 2007 +0000 @@ -15,14 +15,9 @@ vm_cfg = { 'VCPUs_policy': 'credit', 'VCPUs_params': '', 'VCPUs_number': 2, - 'VCPUs_features_required': '', - 'VCPUs_features_can_use': '', - 'VCPUs_features_force_on': '', - 'VCPUs_features_force_off': '', 'actions_after_shutdown': 'destroy', 'actions_after_reboot': 'restart', - 'actions_after_suspend': 'destroy', 'actions_after_crash': 'destroy', 'PV_bootloader': '', @@ -65,7 +60,7 @@ local_vdi_cfg = { local_vdi_cfg = { 'name_label': 'gentoo.amd64.img', 'name_description': '', - 'uri': 'file:/root/gentoo.amd64.img', + 'location': 'file:/root/gentoo.amd64.img', 'virtual_size': 0, 'sector_size': 0, 'type': 'system', @@ -183,13 +178,13 @@ def test_vm_create(): execute(server, 'VM.resume', (session, vm_uuid, False)) print 'Resumed VM.' + finally: # Wait for user to say we're good to shut it down while True: destroy = raw_input('destroy VM? ') if destroy[0] in ('y', 'Y'): break - - finally: + # Clean up if vif_uuid: execute(server, 'VIF.destroy', (session, vif_uuid)) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |