mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 05:17:59 +03:00
testCompareXMLToArgvValidateSchema: Populate autoNodeset
We create a new 'vm' so we must also fake the nodeset. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
28088b6f0e
commit
3580dfdfd0
@ -519,6 +519,7 @@ testCompareXMLToArgvValidateSchema(virQEMUDriverPtr drv,
|
||||
{
|
||||
g_auto(GStrv) args = NULL;
|
||||
g_autoptr(virDomainObj) vm = NULL;
|
||||
qemuDomainObjPrivatePtr priv = NULL;
|
||||
size_t nargs = 0;
|
||||
size_t i;
|
||||
g_autoptr(GHashTable) schema = NULL;
|
||||
@ -546,6 +547,11 @@ testCompareXMLToArgvValidateSchema(virQEMUDriverPtr drv,
|
||||
NULL, parseFlags)))
|
||||
return -1;
|
||||
|
||||
priv = vm->privateData;
|
||||
|
||||
if (virBitmapParse("0-3", &priv->autoNodeset, 4) < 0)
|
||||
return -1;
|
||||
|
||||
if (!(cmd = testCompareXMLToArgvCreateArgs(drv, vm, migrateURI, info, flags,
|
||||
true)))
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user