diff --git a/docs/schemas/basictypes.rng b/docs/schemas/basictypes.rng
index 4f16fa7d216fab60cb52ccc953a759cdadd4708b..a50349c60234c2c682a07a274e29ac198264e69d 100644
--- a/docs/schemas/basictypes.rng
+++ b/docs/schemas/basictypes.rng
@@ -140,8 +140,16 @@
- [kKmMgGtTpPeE]
+ (bytes)|[kKmMgGtTpPeE]
+
+
+
+
+
+
+
+
diff --git a/docs/schemas/domaincommon.rng b/docs/schemas/domaincommon.rng
index a905457a767bf1c0f525ac35642e23e83882f17e..53389b07825d142f016676418f4eb4e0b21a9c6e 100644
--- a/docs/schemas/domaincommon.rng
+++ b/docs/schemas/domaincommon.rng
@@ -412,11 +412,11 @@
-
+
-
+
@@ -461,25 +461,25 @@
-
+
-
+
-
+
-
+
@@ -3129,12 +3129,25 @@
1000
+
[0-9]+
4000
+
+
+
+
+ KiB
+
+
+
+ [0-9]+
+ 4000
+
+
diff --git a/docs/schemas/storagepool.rng b/docs/schemas/storagepool.rng
index 6399f12e34a245602405989dde160bfce848b42f..d4c80da8a7c650fb3d4df7c99b9602c3d6f4f565 100644
--- a/docs/schemas/storagepool.rng
+++ b/docs/schemas/storagepool.rng
@@ -136,17 +136,17 @@
-
+
-
+
-
+
diff --git a/docs/schemas/storagevol.rng b/docs/schemas/storagevol.rng
index d06884c9309d25319fa4813472213dbd3f28e68d..8edb877bcbb73bbea80658401f5c88e97451868d 100644
--- a/docs/schemas/storagevol.rng
+++ b/docs/schemas/storagevol.rng
@@ -32,22 +32,12 @@
-
-
-
-
-
-
+
-
-
-
-
-
-
+
diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c
index b99471814c1a21e9688806f9a9c4005d2d5b66d1..6162c4ed4e4bed804cd3c9bab0ef577e6d59cc72 100644
--- a/src/conf/domain_conf.c
+++ b/src/conf/domain_conf.c
@@ -12026,8 +12026,9 @@ virDomainDefFormatInternal(virDomainDefPtr def,
xmlIndentTreeOutput = oldIndentTreeOutput;
}
- virBufferAsprintf(buf, " %lu\n", def->mem.max_balloon);
- virBufferAsprintf(buf, " %lu\n",
+ virBufferAsprintf(buf, " %lu\n",
+ def->mem.max_balloon);
+ virBufferAsprintf(buf, " %lu\n",
def->mem.cur_balloon);
/* add blkiotune only if there are any */
@@ -12068,20 +12069,20 @@ virDomainDefFormatInternal(virDomainDefPtr def,
def->mem.swap_hard_limit)
virBufferAddLit(buf, " \n");
if (def->mem.hard_limit) {
- virBufferAsprintf(buf, " %lu\n",
- def->mem.hard_limit);
+ virBufferAsprintf(buf, " "
+ "%lu\n", def->mem.hard_limit);
}
if (def->mem.soft_limit) {
- virBufferAsprintf(buf, " %lu\n",
- def->mem.soft_limit);
+ virBufferAsprintf(buf, " "
+ "%lu\n", def->mem.soft_limit);
}
if (def->mem.min_guarantee) {
- virBufferAsprintf(buf, " %lu\n",
- def->mem.min_guarantee);
+ virBufferAsprintf(buf, " "
+ "%lu\n", def->mem.min_guarantee);
}
if (def->mem.swap_hard_limit) {
- virBufferAsprintf(buf, " %lu\n",
- def->mem.swap_hard_limit);
+ virBufferAsprintf(buf, " "
+ "%lu\n", def->mem.swap_hard_limit);
}
if (def->mem.hard_limit || def->mem.soft_limit || def->mem.min_guarantee ||
def->mem.swap_hard_limit)
diff --git a/src/conf/domain_conf.h b/src/conf/domain_conf.h
index 87b410336fe8bd600b9c218035fb067178362833..2beefcbbe1ce5f5a41a1d928655fa5221610b9bd 100644
--- a/src/conf/domain_conf.h
+++ b/src/conf/domain_conf.h
@@ -1496,13 +1496,13 @@ struct _virDomainDef {
} blkio;
struct {
- unsigned long max_balloon;
- unsigned long cur_balloon;
+ unsigned long max_balloon; /* in kibibytes */
+ unsigned long cur_balloon; /* in kibibytes */
unsigned long hugepage_backed;
- unsigned long hard_limit;
- unsigned long soft_limit;
- unsigned long min_guarantee;
- unsigned long swap_hard_limit;
+ unsigned long hard_limit; /* in kibibytes */
+ unsigned long soft_limit; /* in kibibytes */
+ unsigned long min_guarantee; /* in kibibytes */
+ unsigned long swap_hard_limit; /* in kibibytes */
} mem;
unsigned short vcpus;
unsigned short maxvcpus;
diff --git a/src/conf/storage_conf.c b/src/conf/storage_conf.c
index 87f3d6a161ce0dbdfcd7a8e7079f26daf4e4889e..07f3f5b6dc8a56af9a432745ec54233769d8b691 100644
--- a/src/conf/storage_conf.c
+++ b/src/conf/storage_conf.c
@@ -1,7 +1,7 @@
/*
* storage_conf.c: config handling for storage driver
*
- * Copyright (C) 2006-2011 Red Hat, Inc.
+ * Copyright (C) 2006-2012 Red Hat, Inc.
* Copyright (C) 2006-2008 Daniel P. Berrange
*
* This library is free software; you can redistribute it and/or
@@ -897,11 +897,11 @@ virStoragePoolDefFormat(virStoragePoolDefPtr def) {
virUUIDFormat(def->uuid, uuid);
virBufferAsprintf(&buf," %s\n", uuid);
- virBufferAsprintf(&buf," %llu\n",
+ virBufferAsprintf(&buf," %llu\n",
def->capacity);
- virBufferAsprintf(&buf," %llu\n",
+ virBufferAsprintf(&buf," %llu\n",
def->allocation);
- virBufferAsprintf(&buf," %llu\n",
+ virBufferAsprintf(&buf," %llu\n",
def->available);
if (virStoragePoolSourceFormat(&buf, options, &def->source) < 0)
@@ -1262,9 +1262,9 @@ virStorageVolDefFormat(virStoragePoolDefPtr pool,
}
virBufferAddLit(&buf, " \n");
- virBufferAsprintf(&buf," %llu\n",
+ virBufferAsprintf(&buf," %llu\n",
def->capacity);
- virBufferAsprintf(&buf," %llu\n",
+ virBufferAsprintf(&buf," %llu\n",
def->allocation);
if (virStorageVolTargetDefFormat(options, &buf,
diff --git a/src/conf/storage_conf.h b/src/conf/storage_conf.h
index dfed0bfbc42164db63b4dcd300338d51c356f7f4..1ef929510e15afb167bbe4d1721466ddb94f256f 100644
--- a/src/conf/storage_conf.h
+++ b/src/conf/storage_conf.h
@@ -1,7 +1,7 @@
/*
* storage_conf.h: config handling for storage driver
*
- * Copyright (C) 2006-2008, 2010-2011 Red Hat, Inc.
+ * Copyright (C) 2006-2008, 2010-2012 Red Hat, Inc.
* Copyright (C) 2006-2008 Daniel P. Berrange
*
* This library is free software; you can redistribute it and/or
@@ -92,8 +92,8 @@ struct _virStorageVolDef {
unsigned int building;
- unsigned long long allocation;
- unsigned long long capacity;
+ unsigned long long allocation; /* bytes */
+ unsigned long long capacity; /* bytes */
virStorageVolSource source;
virStorageVolTarget target;
@@ -262,9 +262,9 @@ struct _virStoragePoolDef {
unsigned char uuid[VIR_UUID_BUFLEN];
int type; /* virStoragePoolType */
- unsigned long long allocation;
- unsigned long long capacity;
- unsigned long long available;
+ unsigned long long allocation; /* bytes */
+ unsigned long long capacity; /* bytes */
+ unsigned long long available; /* bytes */
virStoragePoolSource source;
virStoragePoolTarget target;
diff --git a/tests/define-dev-segfault b/tests/define-dev-segfault
index 0a0532bdd8416fc01414ef2db8ab427bf61def4a..0c37f6ddd9087fe7eb0a5092830316d84699ea8c 100755
--- a/tests/define-dev-segfault
+++ b/tests/define-dev-segfault
@@ -20,8 +20,8 @@ cat <<\EOF > D.xml || fail=1
D
aaa3ae22-fed2-bfbd-ac02-3bea3bcfad82
- 262144
- 262144
+ 262144
+ 262144
1
hvm
diff --git a/tests/domainschemadata/domain-lxc-simple.xml b/tests/domainschemadata/domain-lxc-simple.xml
index 653bbc7fbaa97898327e0081b1d49ad0069ade06..e61434faccb76c13514b66c8f95e14e2de04b747 100644
--- a/tests/domainschemadata/domain-lxc-simple.xml
+++ b/tests/domainschemadata/domain-lxc-simple.xml
@@ -5,7 +5,7 @@
exe
/sh
- 500000
+ 500000
diff --git a/tests/domainschemadata/portprofile.xml b/tests/domainschemadata/portprofile.xml
index e51301d952b4072b2dad1359fb1bc0390964d26e..e7849b341e6abea0bbbf9e0894bcb3f2022caba1 100644
--- a/tests/domainschemadata/portprofile.xml
+++ b/tests/domainschemadata/portprofile.xml
@@ -1,7 +1,7 @@
portprofile
00000000-0000-0000-0000-000000000000
- 1048576
+ 1048576
exe
/sh
diff --git a/tests/domainschemadata/qemu-simple-description-title.xml b/tests/domainschemadata/qemu-simple-description-title.xml
index a8a9cac4521e2cc1ba0c056f05b81c322024611b..365801db0804004229084640a21d3e4a089cfdf0 100644
--- a/tests/domainschemadata/qemu-simple-description-title.xml
+++ b/tests/domainschemadata/qemu-simple-description-title.xml
@@ -1,8 +1,8 @@
qemu-demo
603cc28c-9841-864e-0949-8cc7d3bae9f8
- 65536
- 65536
+ 65536
+ 65536
A short description of this domain
A longer explanation that this domain is a test domain
diff --git a/tests/domainschemadata/timers.xml b/tests/domainschemadata/timers.xml
index c1baa2ccfe3547a0c9501977f91c41892986133d..0bfb45697155fdc81d89bfea505137c9d26dbae0 100644
--- a/tests/domainschemadata/timers.xml
+++ b/tests/domainschemadata/timers.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219200
- 219200
+ 219200
+ 219200
1
hvm
diff --git a/tests/domainsnapshotxml2xmlout/disk_snapshot.xml b/tests/domainsnapshotxml2xmlout/disk_snapshot.xml
index c57f38fa7e615a9881ba0dfb674eae52dbf2f5a0..29f60be5519b0bf4a5b273b31175a93e62fe33af 100644
--- a/tests/domainsnapshotxml2xmlout/disk_snapshot.xml
+++ b/tests/domainsnapshotxml2xmlout/disk_snapshot.xml
@@ -26,8 +26,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/domainsnapshotxml2xmlout/full_domain.xml b/tests/domainsnapshotxml2xmlout/full_domain.xml
index a55f353a3c01224b1a65862ca093f1ebb34bc7f4..f77d6b0a08db9dd234027a013697dcff5a382ffb 100644
--- a/tests/domainsnapshotxml2xmlout/full_domain.xml
+++ b/tests/domainsnapshotxml2xmlout/full_domain.xml
@@ -9,8 +9,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/domainsnapshotxml2xmlout/metadata.xml b/tests/domainsnapshotxml2xmlout/metadata.xml
index 263cbbab6f1a54159aac1308f44a783187174a75..1a27773ab4baf7306454d63fd6ef148085a8d202 100644
--- a/tests/domainsnapshotxml2xmlout/metadata.xml
+++ b/tests/domainsnapshotxml2xmlout/metadata.xml
@@ -13,8 +13,8 @@
fooish
barish
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/openvzutilstest.c b/tests/openvzutilstest.c
index 7f5ddc9bc6471891f0790582f8746168323688b7..05121fe5d9c77f3f4f7de0c916a8316fb022818a 100644
--- a/tests/openvzutilstest.c
+++ b/tests/openvzutilstest.c
@@ -78,8 +78,8 @@ testReadNetworkConf(const void *data ATTRIBUTE_UNUSED)
const char *expected =
"\n"
" 00000000-0000-0000-0000-000000000000\n"
- " 0\n"
- " 0\n"
+ " 0\n"
+ " 0\n"
" 0\n"
" \n"
" exe\n"
diff --git a/tests/qemuargv2xmltest.c b/tests/qemuargv2xmltest.c
index 51f5aed28e47b40beda2ec3e859d99994d690060..e13b87aff094c6257b35e0a14163c9fa6b129c73 100644
--- a/tests/qemuargv2xmltest.c
+++ b/tests/qemuargv2xmltest.c
@@ -22,8 +22,9 @@ static int blankProblemElements(char *data)
{
if (virtTestClearLineRegex("[[:alnum:]]+", data) < 0 ||
virtTestClearLineRegex("([[:alnum:]]|-)+", data) < 0 ||
- virtTestClearLineRegex("[[:digit:]]+", data) < 0 ||
- virtTestClearLineRegex("[[:digit:]]+", data) < 0 ||
+ virtTestClearLineRegex("[[:digit:]]+", data) < 0 ||
+ virtTestClearLineRegex("[[:digit:]]+",
+ data) < 0 ||
virtTestClearLineRegex("", data) < 0 ||
virtTestClearLineRegex("", data) < 0)
return -1;
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-balloon-device-auto.xml b/tests/qemuxml2argvdata/qemuxml2argv-balloon-device-auto.xml
index 9315621808f0bcdaa1c1341c0326dae7607138ef..fc909ae20acabd01a0326718dd3b62effa125653 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-balloon-device-auto.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-balloon-device-auto.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-balloon-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-balloon-device.xml
index 8ac3c091c8b14356c167d5aa79f70a5f7c630690..375daf45fc5a2f7f890dacf2715a39241efa2cab 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-balloon-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-balloon-device.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-bios.xml b/tests/qemuxml2argvdata/qemuxml2argv-bios.xml
index 9312beeccba6ba4ee93306a9a4ca3273317ef3e4..cfc558710d0a39bdd9a62742b64112395ef846ab 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-bios.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-bios.xml
@@ -1,8 +1,8 @@
test-bios
362d1fc1-df7d-193e-5c18-49a71bd1da66
- 1048576
- 1048576
+ 1048576
+ 1048576
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-blkdeviotune.xml b/tests/qemuxml2argvdata/qemuxml2argv-blkdeviotune.xml
index 828d199acd311abb396fe1b9df33e6c6386b43f4..e9a87b3db1709e7a4bea09fd4b8c71e4cb1513b1 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-blkdeviotune.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-blkdeviotune.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-blkiotune-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-blkiotune-device.xml
index 97a81839a27af2451e5954566c5f16c46db4e588..7bacf918904283912ba111de497266bc170c9263 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-blkiotune-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-blkiotune-device.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
800
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-blkiotune.xml b/tests/qemuxml2argvdata/qemuxml2argv-blkiotune.xml
index 5be9b370047d57c4edcbcb0350ac7cdc9f4874db..94c0b28f87ab8d95aa29f5de755e402f74eb3ae8 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-blkiotune.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-blkiotune.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
800
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-cdrom.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-cdrom.xml
index 44a30de12538ac8c19e4e1cd5377d0dd53811693..77c73a17bce6019bb3bc2334b3b5b61865086ca5 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-cdrom.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-cdrom.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-complex-bootindex.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-complex-bootindex.xml
index 8ee42e7c967ec0e9fc2990441ed9575868d0e2e3..3aab45e7f42e06ec6a2d44eb4da5faaf29deba17 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-complex-bootindex.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-complex-bootindex.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-complex.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-complex.xml
index 8ee42e7c967ec0e9fc2990441ed9575868d0e2e3..3aab45e7f42e06ec6a2d44eb4da5faaf29deba17 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-complex.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-complex.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-floppy.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-floppy.xml
index f55ee2c93f6d0261636ffee8ee6ae1ec21ab0f31..25490f18e46094630e655b150a4215cc2191fd0e 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-floppy.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-floppy.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive-bootindex.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive-bootindex.xml
index 28b1b68d788b832f45b166c2b8d5cf2baa083880..f8eda9169ebc0f6b8a3733e5579f2c18fafc595b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive-bootindex.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive-bootindex.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive.xml
index 28b1b68d788b832f45b166c2b8d5cf2baa083880..f8eda9169ebc0f6b8a3733e5579f2c18fafc595b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable-drive.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable.xml
index 28b1b68d788b832f45b166c2b8d5cf2baa083880..f8eda9169ebc0f6b8a3733e5579f2c18fafc595b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-disable.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-enable.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-enable.xml
index 7847a99dd5d3d3af5f0cf55305ccad4db8362623..89e1172ce8f8f33812c7a0120e9fb6d8c70f6dd2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-enable.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-menu-enable.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-multi.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-multi.xml
index 85e6d91d51e8a4018c993c86ad25b7d7be82b5c9..eca1307e8827a4a314fec5b4fa3a20da9843162d 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-multi.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-multi.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-network.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-network.xml
index 38f88aad7034d5e61de4dcb6640e47185c044a6a..ee7518dd1ef19ffac22a54c5ed035706184c1aba 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-network.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-network.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-boot-order.xml b/tests/qemuxml2argvdata/qemuxml2argv-boot-order.xml
index 69ba3c03f83c6d5dfad7800dde06088848a1d8fa..cbbc958e151605cf27cff924b161081340f70ed4 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-boot-order.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-boot-order.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-bootloader.xml b/tests/qemuxml2argvdata/qemuxml2argv-bootloader.xml
index be074261a2ecd732ccc4b044bd3286c18969a254..d201252780d5935b2b2ceeb1b1ebc94167144d94 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-bootloader.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-bootloader.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
/usr/bin/pygrub
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-channel-guestfwd.xml b/tests/qemuxml2argvdata/qemuxml2argv-channel-guestfwd.xml
index 7b776c54fb7bf211634d89babb47559cea5b2cb1..7de7245c929383d58bc4bd51457bce5ecb2ff20b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-channel-guestfwd.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-channel-guestfwd.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc-old.xml b/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc-old.xml
index 6505b553d303be106505f56fca4fbb42daca9994..e4945e9a40157c0425a6c3a2cdf1e8e1adfc39e2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc-old.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc-old.xml
@@ -1,7 +1,7 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc.xml b/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc.xml
index 6505b553d303be106505f56fca4fbb42daca9994..e4945e9a40157c0425a6c3a2cdf1e8e1adfc39e2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-channel-spicevmc.xml
@@ -1,7 +1,7 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio-auto.xml b/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio-auto.xml
index 73f2ce30f50715b4a034a2ccba57cd847ccada81..91a973a14bdd22769448ea5c478c20d52d86ca23 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio-auto.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio-auto.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio.xml b/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio.xml
index 9b9403e9ba4b0b56bba92e568034798fa9e8327d..960442ae0a0d855bbc975af1b3374de8501ece3f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-channel-virtio.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-clock-france.xml b/tests/qemuxml2argvdata/qemuxml2argv-clock-france.xml
index aa1b3c25fa79882c5feb67e09dd96bc3e5742772..613fd8c372b5520df4cfca43d45c8863125b7819 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-clock-france.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-clock-france.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-clock-localtime.xml b/tests/qemuxml2argvdata/qemuxml2argv-clock-localtime.xml
index ff3612041d3ba1cea1381f8ee4605170fa9895f3..6aa18e1e6ff49af801ca806c445c3499b0d5747c 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-clock-localtime.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-clock-localtime.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-clock-utc.xml b/tests/qemuxml2argvdata/qemuxml2argv-clock-utc.xml
index c0975ac811c0ce0f37d20d1f2078096288afc4c1..1a4e1215f11524fd87ccfef10377084df10191bd 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-clock-utc.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-clock-utc.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-clock-variable.xml b/tests/qemuxml2argvdata/qemuxml2argv-clock-variable.xml
index 510ccb1dcfc0cce5c7e8fa5c2581f976c7942b55..97c0aedb4505cc13d96c7744a9efef04d62d51ce 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-clock-variable.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-clock-variable.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-console-compat-auto.xml b/tests/qemuxml2argvdata/qemuxml2argv-console-compat-auto.xml
index 00532dcf96c9f35814ec425235cc49db67260962..d14034264e6430e870c651a53817e650b7a89a07 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-console-compat-auto.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-console-compat-auto.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-console-compat-chardev.xml b/tests/qemuxml2argvdata/qemuxml2argv-console-compat-chardev.xml
index 4f7dafbac97d4a7b3dbd9f587c8a8bfff3ebe113..a901b5449a721faa78a557b0d3ad26bda4761a4f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-console-compat-chardev.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-console-compat-chardev.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-console-compat.xml b/tests/qemuxml2argvdata/qemuxml2argv-console-compat.xml
index 081cd8a7cbd08af1eb532a19b4977f3dbe6c0301..a4d314e70cfafbd8a665ab9dcde14c0322770a4b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-console-compat.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-console-compat.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-console-virtio-many.xml b/tests/qemuxml2argvdata/qemuxml2argv-console-virtio-many.xml
index 84971b6bba22c6191ad2ea896e0c933ae7115228..626250c6a3ac63c737ff59ba2a6912d7d0d9a60b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-console-virtio-many.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-console-virtio-many.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-console-virtio.xml b/tests/qemuxml2argvdata/qemuxml2argv-console-virtio.xml
index ec733485046cd01e5a4af0e0f70a9c0b9f5398d4..0eb026ebbdd25c1c34d78f2e701d09e01799add2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-console-virtio.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-console-virtio.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact1.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact1.xml
index b5fd49c5f7a7ff2e7909626396cbb0cd41167c65..2804b60004c691a0524e562f19462476059af0e4 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact1.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact1.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2-nofallback.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2-nofallback.xml
index 11de634f3d5592d2bb5fe50ab4dcddbaf6690d79..2649c0da04a95ba7c275e5be80d17b8ab50f3c7c 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2-nofallback.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2-nofallback.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2.xml
index 831291aa906b23487c83e3d356a9be6117211e99..130713efbcd5e6bbbddedc9aabfefb2349601ec4 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-exact2.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-fallback.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-fallback.xml
index 7bd28a87d3c5f235a628465fd612076224ca9173..e93f52e18b367d79abf4da73a05704cb6e3069c2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-fallback.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-fallback.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-kvmclock.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-kvmclock.xml
index 50f582b33d206797d7ea9def3325fe9161e26aec..9ae9d65089b0f7447154a5f6af168ee4e2a8b19c 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-kvmclock.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-kvmclock.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-fallback.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-fallback.xml
index afb16f95bd2007e2945369fee21771f6bd4ff771..e9ac0bcd2b7bfb7d113374a7907904db61dc837b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-fallback.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-fallback.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-nofallback.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-nofallback.xml
index c2ded11357d94556a1fd781a7d6cf87c39dd1fda..695fa1100c655bc4344e60e7b8f92b0969857e98 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-nofallback.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model-nofallback.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model.xml
index 96b046cc78b8de286318f04346d6a18870cddbdb..63484472f6a4bc6a5fd96554258ee289478939ba 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-model.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-passthrough.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-passthrough.xml
index 2d7502574c5a7c0c4dd58fe5f1f3f1f043eda9da..827509404adbb07ff212e350bb809f7b8cb7418d 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-passthrough.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-host-passthrough.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-kvmclock.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-kvmclock.xml
index 63a6163926750c547f6cd049daa1e16796406719..498a6ecab6e87fe5bf93ef30895c4d7ce1fa2e8b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-kvmclock.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-kvmclock.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum1.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum1.xml
index 1a2bef6dc6908e67e373600557f59df690ee1efb..6e030af247ed41f03b80f79aa3d27ef472d52723 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum1.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum1.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum2.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum2.xml
index 795bacabe5447d5702dceeb3e0d8b9434b7412e2..b8d1bf9be4cb4c509c82318a46a6c57e963b104c 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum2.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-minimum2.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-nofallback.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-nofallback.xml
index 7f1f09a900d90ccb01c84a60b58a6ea15a86aeca..517fafaa87d2b1aa310a3cacdb9f3f6ce2e398cf 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-nofallback.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-nofallback.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa1.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa1.xml
index 9fcdda82ab9450e8177be49397fffb1a698d26f9..997ef7d6743fbaf6f691f9b9a075b263870a8946 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa1.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa1.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
16
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa2.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa2.xml
index 9fcdda82ab9450e8177be49397fffb1a698d26f9..997ef7d6743fbaf6f691f9b9a075b263870a8946 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa2.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-numa2.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
16
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-qemu-host-passthrough.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-qemu-host-passthrough.xml
index a7123ce77d3f5e38c32e0d15f64dd9154c103c74..1e82b4be7b45ff589437ae9704928ab9c390dd70 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-qemu-host-passthrough.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-qemu-host-passthrough.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-strict1.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-strict1.xml
index 3dee11f4949ebba8993197c788a83535d3df15fa..3c0bf22bf45051ce4974fa0ca341ec0d2cf7556c 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-strict1.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-strict1.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology1.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology1.xml
index 6b37207d90a10773e023886b303bdb51a65d4363..275e51e0021c6acbeaa023cedf981bb3fc41666f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology1.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology1.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology2.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology2.xml
index 9f09e8172981a00e422813ac9eae92dd8ca49885..992a7ad1368ce7d056f3e5b24ea6519b270921b8 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology2.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology2.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology3.xml b/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology3.xml
index 6b37207d90a10773e023886b303bdb51a65d4363..275e51e0021c6acbeaa023cedf981bb3fc41666f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology3.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cpu-topology3.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
6
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-cputune.xml b/tests/qemuxml2argvdata/qemuxml2argv-cputune.xml
index b3192c7b3f2c0d05a7d32b0bf58e47622fe15c54..6f70571d56151698176923e468f4d69b528218aa 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-cputune.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-cputune.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
2
2048
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-aio.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-aio.xml
index f1c9a42991bef591e3dd65271b98252ac61c43ad..e29b75e65788bbaccdc2ac0cbf245a62717111d6 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-aio.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-aio.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom-empty.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom-empty.xml
index 8fdcb1dbfc09a66c6f8c11440357a8d1c470b7aa..88f650f448a5776827b38c0608839aaa0e09ccfe 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom-empty.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom-empty.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom.xml
index ab09ed60bc4ad20099c797d4739876485f1d197b..6bdd46bee6d6ce3f94044ae4d28d8a469224eb62 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-cdrom.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-copy_on_read.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-copy_on_read.xml
index fb0bf2bf72eb2f7f02809f5d859230c78384de34..48c742b2ac74a7fdfe1af83cb5ddd1edcd8c5c6f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-copy_on_read.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-copy_on_read.xml
@@ -1,6 +1,6 @@
test
- 1048576
+ 1048576
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-cdrom.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-cdrom.xml
index dda54f8b1aadd50afd81863f416b19f05b1b22b3..d137231af5c0d925840ba6444af996d6dd7fc3ac 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-cdrom.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-cdrom.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-disk.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-disk.xml
index cff1a4228de61745d1745f5d9e9093cb7c8b6391..5e638cd087918e927594ab72a281992c7401a070 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-disk.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-boot-disk.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-directsync.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-directsync.xml
index d32d5695978f1fbfea1bf521a1b625ab01933544..2abae66e8c3e99b1ce738c00e7389ccbb68c21e2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-directsync.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-directsync.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-unsafe.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-unsafe.xml
index f2362afc48f387ae17a3bdab6902b19e4eac8950..e4d29c73d5f50af4330f5b5104f895496fb5606e 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-unsafe.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-unsafe.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-none.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-none.xml
index 078e2e74c4c4408bb56ad3fd970d1cf0b0b42c22..f3deecc1b0f256ea7b67b4aee0b43c571be1b584 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-none.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-none.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wb.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wb.xml
index 1e575ed3cd6d6d3c3c531eb3654d545788037e62..dc0d595f35535e2ca9966e70c3311b7227daa7ae 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wb.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wb.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wt.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wt.xml
index ffa8aba2fc7ac597098bd2b282cebc62af306408..af39de07c90200f5cbd5990e9c5b60830c8fd28a 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wt.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v1-wt.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-none.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-none.xml
index 4c33b5a722b47383485f0a8c2a42541437a17921..63e82f056b41d596de54cc9553b3681a886d85ab 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-none.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-none.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wb.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wb.xml
index cad82575319adea0aa4b879649fd83c2c371c8ee..14f9a28ea06fe6ac778ce03a58552e41f6284d77 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wb.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wb.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wt.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wt.xml
index 1af9a9fd232731d2bcf6d504d6c208ce1717e643..5da9d2ca4f9809d960bb3a6adfd318c2008a56a3 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wt.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-cache-v2-wt.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-enospace.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-enospace.xml
index e0182d6a39ce2c3dccf8f7c1a9b3d704b726ddec..d3b446b619ead2b14abda29b214b6fc396cf2dc2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-enospace.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-enospace.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-stop.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-stop.xml
index a1d55f96f08b549c122b0f581ad925ebcd0577ca..721a5f6e997b57070e01161cd8e9aee6f985acd1 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-stop.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-stop.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-wreport-rignore.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-wreport-rignore.xml
index b52d3972dd0aaf6772cf7bacee1003d81e2d481a..07a4cf7b84c9774513926804d15c27b89e074f2f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-wreport-rignore.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-error-policy-wreport-rignore.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fat.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fat.xml
index 2345bae121d9f70d291188b144572224f14e6a75..163fc1d552304adfad7eb66d3213c4cf9031181e 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fat.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fat.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fmt-qcow.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fmt-qcow.xml
index 599993c40463cffac98a27b52a051f4042485d39..0fa5897516f5b08617796c9769e29beda07d843f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fmt-qcow.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-fmt-qcow.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-nbd.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-nbd.xml
index a761f6a55550d75b9c7cb648db3046fcc31738a5..11371a21e2bfedf8b0a13b6d8a9d05ea98833e53 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-nbd.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-nbd.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-auth.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-auth.xml
index ac6c69852fbbd44d678eb029d54ee45a1917ee62..10cef28d8ade4086c0040bbdf603543c7df227c2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-auth.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-auth.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-ceph-env.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-ceph-env.xml
index 8d02517f96da3aa53340b7230fc5b116cd1100d6..5d4fc9fc52c4e34aacc2213a1d1aa0fd7cfc93db 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-ceph-env.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd-ceph-env.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd.xml
index 8d02517f96da3aa53340b7230fc5b116cd1100d6..5d4fc9fc52c4e34aacc2213a1d1aa0fd7cfc93db 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-rbd.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-sheepdog.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-sheepdog.xml
index 30e2a75c06e98c1593f14457346928a403a08ae4..04cfd3c11544d453b2ce63a2344869d1b837b457 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-sheepdog.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-network-sheepdog.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-no-boot.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-no-boot.xml
index 2ce27a563b5db9391d5526dd3c60f76a2922e42c..5750ab287508e80908528d0e94b50f818538f864 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-no-boot.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-no-boot.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-disk.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-disk.xml
index a3ecd9c248bdb765f7951a4e6c5b2a6afce1d4ab..ab7506725be5d80f496774e6a0ee075c39fefc17 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-disk.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-disk.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-no-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-no-device.xml
index a3ecd9c248bdb765f7951a4e6c5b2a6afce1d4ab..ab7506725be5d80f496774e6a0ee075c39fefc17 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-no-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-readonly-no-device.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-shared.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-shared.xml
index 674bbede35edab0b41a0c2942177b8b2931d8386..0760afa79a53a3e2a5079687882b2388a56c3218 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-shared.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-drive-shared.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-floppy.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-floppy.xml
index 68e4f06b33c3bfbc20ba9ab2bb7f6429c99f7f5a..b9240cf9135e92be0a44be7380a8d703411cc0f7 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-floppy.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-floppy.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-ioeventfd.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-ioeventfd.xml
index 00edadaf71fbacbe7a435eed1ea1e20f22273a42..82a69990386c25374882b7778a85f0c0371392e1 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-ioeventfd.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-ioeventfd.xml
@@ -1,6 +1,6 @@
test
- 1048576
+ 1048576
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-many.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-many.xml
index 055883a5d5daab39d305fce9bd93a4001f711e98..1b00818571da5964e71320fa0dfcedc276602232 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-many.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-many.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-order.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-order.xml
index d89e57bde0e7bb4a35016c8dae8bd4c211a13203..10cdee7c106b5895ec9952ce9d1f08afae003205 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-order.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-order.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-sata-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-sata-device.xml
index 3d7fa545e4452e4f5f813016d1d39df1381d67a4..add074c3114c8ce8ef9cc7e5c3697c92185f20aa 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-sata-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-sata-device.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device-auto.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device-auto.xml
index fbbf6ed84f10a4be0a6ed19061f4d867c549f51e..3db59e6916fd6d63d118de0d12d7062cf7fb2d0b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device-auto.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device-auto.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device.xml
index 8613b5dc056c76c9ab9d704cdfafbaae0d469c42..7599346c528d11f0240b83b762edcab544988420 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-device.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-virtio-scsi.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-virtio-scsi.xml
index 8b353071edac9e9bec00fbe5a3ab22d83b42b9bc..287e0ee928c1b444a6744edfbdd1255dc1eda724 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-virtio-scsi.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-virtio-scsi.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-vscsi.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-vscsi.xml
index c12688620a0cc37e75be1f5d253e6de02f40bd15..cd30b3cc34163f219ebc90fecc16129d773f78f5 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-vscsi.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-vscsi.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-snapshot.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-snapshot.xml
index 0544c056a1485c9dff00f159999bde900bfd09c7..019603d1aa9beebda2a99b04ccd87809add3b413 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-snapshot.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-snapshot.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-transient.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-transient.xml
index aac1b57930071d1138a90142ba3c6a0bd61cb17a..7e4d6ac4b8ba68406f26195f39ba80ec0731616f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-transient.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-transient.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-usb-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-usb-device.xml
index 7ad35e3d5f78d951136016270cc951c4001c6d19..4c7b9da9ac4bea1aa67b9b02bb895a5dc2c640bb 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-usb-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-usb-device.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-usb.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-usb.xml
index da238fa9157cd9de91648e731df18eafd9933866..d61fd15d66a0106eac359b35a33cb777674ffe4e 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-usb.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-usb.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-virtio.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-virtio.xml
index 02d1fd3ee6eeddfbdefca6f6d370e8b03c3d75c6..00111bef588226cdc6cca9eb92632dfaa508f09f 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-virtio.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-virtio.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-xenvbd.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-xenvbd.xml
index 9606a52acf8788a11e5b16581ca94d5ffc3e14fc..2fa1e388658b488522d345de40cf0abb8cc49875 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-disk-xenvbd.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-xenvbd.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-encrypted-disk.xml b/tests/qemuxml2argvdata/qemuxml2argv-encrypted-disk.xml
index 636f7e42ada69e4f52096e65c27e2ef55979cdff..0a3af7fc85febc2a71f3d3b168acc94ee64e1a05 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-encrypted-disk.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-encrypted-disk.xml
@@ -1,8 +1,8 @@
encryptdisk
496898a6-e6ff-f7c8-5dc2-3cf410945ee9
- 1048576
- 524288
+ 1048576
+ 524288
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-event_idx.xml b/tests/qemuxml2argvdata/qemuxml2argv-event_idx.xml
index a8131b99c875fa13905659b9435e2dc0fa6d7f5c..5c4664c2cf89fb0579539e3dc1890b2a0f16a9b8 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-event_idx.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-event_idx.xml
@@ -1,8 +1,8 @@
test
bba65c0e-c049-934f-b6aa-4e2c0582acdf
- 1048576
- 1048576
+ 1048576
+ 1048576
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-floppy-drive-fat.xml b/tests/qemuxml2argvdata/qemuxml2argv-floppy-drive-fat.xml
index 48bcdb76f9d5980317972322b4bd7cb4337c121a..c31bb2996a59b1854c6635ae430f7eb3728cbe74 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-floppy-drive-fat.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-floppy-drive-fat.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-fs9p.xml b/tests/qemuxml2argvdata/qemuxml2argv-fs9p.xml
index 2e484cb699a36b5cbbbf025f83892bd889c091f5..026b384926526da5ed729bfc5f2655d4d5d78ada 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-fs9p.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-fs9p.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network.xml
index 36f0e30ff411c42bdc8b7de67bb328aa53c97f1d..0c5188fc41cff7a31fa625ec5d9e5b3ddaf34c80 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network2.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network2.xml
index 3915b829425fa700836d153200e81652b7ee3828..e990aa8d8f61d7bd2efb0ffac8c68611d40ebbf7 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network2.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-listen-network2.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl-fullscreen.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl-fullscreen.xml
index 13f7a1f187a4a70ebef18a49da7fe9a0218c7206..6eeb21d4494ab6bb60373d3be98f7072c2fe6409 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl-fullscreen.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl-fullscreen.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl.xml
index 64cadd8ad70dafc6ef9c12c294be6f3eb9fd136b..400cc5884ce1392d6e229131e51a9b2004ac894b 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-compression.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-compression.xml
index ca3226744f19baea1f829327883db0fd02031d39..5504b2a58b3901a7aed58cafc6024e4d8669d7e3 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-compression.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-compression.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-qxl-vga.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-qxl-vga.xml
index 8d7eb5c89894754ed9a75c94858111ef17cba21a..df8753662a2890c56a27b4cabcd091f9f5c0cda5 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-qxl-vga.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-qxl-vga.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-timeout.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-timeout.xml
index 17fb06cfd37d3450408304abba09a2386748e289..8f751fff1d96defd45dbc1d9755eb779aaef0cfd 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-timeout.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-timeout.xml
@@ -1,8 +1,8 @@
f14
553effab-b5e1-2d80-dfe3-da4344826c43
- 1048576
- 1048576
+ 1048576
+ 1048576
2
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice.xml
index 35cf26dc958cff1813cf2c44f72c10c3380d6f73..8930b6088153aa0fc58a99b843d2cd135619f920 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-sasl.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-sasl.xml
index cd244682318dbd82b3d9a8960b61604d1a3b4888..f0cdc66642edeb11262ee3955aabaf71b3e2f1e4 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-sasl.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-sasl.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-socket.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-socket.xml
index 88b67105cfa9bee42efb1026ea88c67b2d38df8e..952843f6e057223e99073da487f10ddb0d8d2000 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-socket.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-socket.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-tls.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-tls.xml
index cd244682318dbd82b3d9a8960b61604d1a3b4888..f0cdc66642edeb11262ee3955aabaf71b3e2f1e4 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-tls.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc-tls.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc.xml
index 49ad691f56d18fa15b93e80b4f1b31bbd329ff75..4fbe7a67ba18cf66c40b59522cf2a1f74ded36f0 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-vnc.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address-device.xml
index 4ef8af45631df5fb44ae5f43f022aaa8561fd41b..64b94e0c53cf9bef335654099f1a3f3044c4b3b4 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address-device.xml
@@ -1,8 +1,8 @@
QEMUGuest2
c7a5fdbd-edaf-9466-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address.xml b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address.xml
index 2de4c6de029d0ac3ad6e7837d97a00b64b6bee30..aeee13f72b187f8e37bc91681d4afe400de40b46 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-pci-address.xml
@@ -1,8 +1,8 @@
QEMUGuest2
c7a5fdbd-edaf-9466-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address-device.xml b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address-device.xml
index 04dc7da34545fa23b82f2b8f7904b8fcb795118a..18d5e9b5b0022fabdbe5d67da79e17b7ba14c5c6 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address-device.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address-device.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219100
- 219100
+ 219100
+ 219100
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address.xml b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address.xml
index f6e17ee185de27bcb5a47e5922a6f2f550c6554d..6ee20f2b8a8d0471d47f20b726c2731a6450d672 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-hostdev-usb-address.xml
@@ -1,8 +1,8 @@
QEMUGuest1
c7a5fdbd-edaf-9455-926a-d65c16db1809
- 219136
- 219136
+ 219136
+ 219136
1
hvm
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-hugepages.xml b/tests/qemuxml2argvdata/qemuxml2argv-hugepages.xml
index 79fe83d95816575b484fbab991eeacd0b1854b4e..68bdf9e719300b22908f47b096f29f09894d35a2 100644
--- a/tests/qemuxml2argvdata/qemuxml2argv-hugepages.xml
+++ b/tests/qemuxml2argvdata/qemuxml2argv-hugepages.xml
@@ -1,8 +1,8 @@