mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-26 15:14:42 +00:00
esx: Fix virtualHW.version generation
The supported virtualHW.version doesn't depend on the API version, but on the product version.
This commit is contained in:
parent
abce152a49
commit
1d8099f4b6
@ -2145,7 +2145,7 @@ esxDomainDumpXML(virDomainPtr domain, int flags)
|
|||||||
}
|
}
|
||||||
|
|
||||||
def = esxVMX_ParseConfig(priv->host, vmx, datastoreName, directoryName,
|
def = esxVMX_ParseConfig(priv->host, vmx, datastoreName, directoryName,
|
||||||
priv->host->apiVersion);
|
priv->host->productVersion);
|
||||||
|
|
||||||
if (def != NULL) {
|
if (def != NULL) {
|
||||||
xml = virDomainDefFormat(def, flags);
|
xml = virDomainDefFormat(def, flags);
|
||||||
@ -2188,7 +2188,7 @@ esxDomainXMLFromNative(virConnectPtr conn, const char *nativeFormat,
|
|||||||
}
|
}
|
||||||
|
|
||||||
def = esxVMX_ParseConfig(priv->host, nativeConfig, "?", "?",
|
def = esxVMX_ParseConfig(priv->host, nativeConfig, "?", "?",
|
||||||
priv->host->apiVersion);
|
priv->host->productVersion);
|
||||||
|
|
||||||
if (def != NULL) {
|
if (def != NULL) {
|
||||||
xml = virDomainDefFormat(def, VIR_DOMAIN_XML_INACTIVE);
|
xml = virDomainDefFormat(def, VIR_DOMAIN_XML_INACTIVE);
|
||||||
@ -2222,7 +2222,7 @@ esxDomainXMLToNative(virConnectPtr conn, const char *nativeFormat,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
vmx = esxVMX_FormatConfig(priv->host, def, priv->host->apiVersion);
|
vmx = esxVMX_FormatConfig(priv->host, def, priv->host->productVersion);
|
||||||
|
|
||||||
virDomainDefFree(def);
|
virDomainDefFree(def);
|
||||||
|
|
||||||
@ -2445,7 +2445,7 @@ esxDomainDefineXML(virConnectPtr conn, const char *xml ATTRIBUTE_UNUSED)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Build VMX from domain XML */
|
/* Build VMX from domain XML */
|
||||||
vmx = esxVMX_FormatConfig(priv->host, def, priv->host->apiVersion);
|
vmx = esxVMX_FormatConfig(priv->host, def, priv->host->productVersion);
|
||||||
|
|
||||||
if (vmx == NULL) {
|
if (vmx == NULL) {
|
||||||
goto failure;
|
goto failure;
|
||||||
|
@ -725,7 +725,7 @@ esxVMX_ParseFileName(esxVI_Context *ctx, const char *fileName,
|
|||||||
virDomainDefPtr
|
virDomainDefPtr
|
||||||
esxVMX_ParseConfig(esxVI_Context *ctx, const char *vmx,
|
esxVMX_ParseConfig(esxVI_Context *ctx, const char *vmx,
|
||||||
const char *datastoreName, const char *directoryName,
|
const char *datastoreName, const char *directoryName,
|
||||||
esxVI_APIVersion apiVersion)
|
esxVI_ProductVersion productVersion)
|
||||||
{
|
{
|
||||||
virConfPtr conf = NULL;
|
virConfPtr conf = NULL;
|
||||||
virDomainDefPtr def = NULL;
|
virDomainDefPtr def = NULL;
|
||||||
@ -775,42 +775,41 @@ esxVMX_ParseConfig(esxVI_Context *ctx, const char *vmx,
|
|||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (apiVersion) {
|
/*
|
||||||
case esxVI_APIVersion_25:
|
* virtualHW.version compatibility matrix:
|
||||||
|
*
|
||||||
|
* 4 7 API
|
||||||
|
* ESX 3.5 + 2.5
|
||||||
|
* ESX 4.0 + + 4.0
|
||||||
|
* GSX 2.0 + + 2.5
|
||||||
|
*/
|
||||||
|
switch (productVersion) {
|
||||||
|
case esxVI_ProductVersion_ESX35:
|
||||||
if (virtualHW_version != 4) {
|
if (virtualHW_version != 4) {
|
||||||
ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
|
ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
|
||||||
_("Expecting VMX entry 'virtualHW.version' to be 4 for "
|
_("Expecting VMX entry 'virtualHW.version' to be 4 "
|
||||||
"VI API version 2.5 but found %lld"),
|
"but found %lld"),
|
||||||
virtualHW_version);
|
virtualHW_version);
|
||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case esxVI_APIVersion_40:
|
case esxVI_ProductVersion_GSX20:
|
||||||
|
case esxVI_ProductVersion_ESX40:
|
||||||
if (virtualHW_version != 4 && virtualHW_version != 7) {
|
if (virtualHW_version != 4 && virtualHW_version != 7) {
|
||||||
ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
|
ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
|
||||||
_("Expecting VMX entry 'virtualHW.version' to be 4 or 7 "
|
_("Expecting VMX entry 'virtualHW.version' to be 4 or 7 "
|
||||||
"for VI API version 4.0 but found %lld"),
|
"but found %lld"),
|
||||||
virtualHW_version);
|
virtualHW_version);
|
||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case esxVI_APIVersion_Unknown:
|
|
||||||
if (virtualHW_version != 4 && virtualHW_version != 7) {
|
|
||||||
ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
|
|
||||||
_("Expecting VMX entry 'virtualHW.version' to be 4 or 7 "
|
|
||||||
"but found %lld"), virtualHW_version);
|
|
||||||
goto failure;
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ESX_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
|
ESX_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||||
_("Expecting VI API version 2.5 or 4.0"));
|
_("Unexpected product version"));
|
||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2207,7 +2206,7 @@ esxVMX_FormatFileName(esxVI_Context *ctx ATTRIBUTE_UNUSED, const char *src)
|
|||||||
|
|
||||||
char *
|
char *
|
||||||
esxVMX_FormatConfig(esxVI_Context *ctx, virDomainDefPtr def,
|
esxVMX_FormatConfig(esxVI_Context *ctx, virDomainDefPtr def,
|
||||||
esxVI_APIVersion apiVersion)
|
esxVI_ProductVersion productVersion)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int sched_cpu_affinity_length;
|
int sched_cpu_affinity_length;
|
||||||
@ -2228,18 +2227,19 @@ esxVMX_FormatConfig(esxVI_Context *ctx, virDomainDefPtr def,
|
|||||||
virBufferAddLit(&buffer, "config.version = \"8\"\n");
|
virBufferAddLit(&buffer, "config.version = \"8\"\n");
|
||||||
|
|
||||||
/* vmx:virtualHW.version */
|
/* vmx:virtualHW.version */
|
||||||
switch (apiVersion) {
|
switch (productVersion) {
|
||||||
case esxVI_APIVersion_25:
|
case esxVI_ProductVersion_ESX35:
|
||||||
virBufferAddLit(&buffer, "virtualHW.version = \"4\"\n");
|
virBufferAddLit(&buffer, "virtualHW.version = \"4\"\n");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case esxVI_APIVersion_40:
|
case esxVI_ProductVersion_GSX20:
|
||||||
|
case esxVI_ProductVersion_ESX40:
|
||||||
virBufferAddLit(&buffer, "virtualHW.version = \"7\"\n");
|
virBufferAddLit(&buffer, "virtualHW.version = \"7\"\n");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ESX_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
|
ESX_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||||
_("Expecting VI API version 2.5 or 4.0"));
|
_("Unexpected product version"));
|
||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ esxVMX_ParseFileName(esxVI_Context *ctx, const char *fileName,
|
|||||||
virDomainDefPtr
|
virDomainDefPtr
|
||||||
esxVMX_ParseConfig(esxVI_Context *ctx, const char *vmx,
|
esxVMX_ParseConfig(esxVI_Context *ctx, const char *vmx,
|
||||||
const char *datastoreName, const char *directoryName,
|
const char *datastoreName, const char *directoryName,
|
||||||
esxVI_APIVersion apiVersion);
|
esxVI_ProductVersion productVersion);
|
||||||
|
|
||||||
int
|
int
|
||||||
esxVMX_ParseVNC(virConfPtr conf, virDomainGraphicsDefPtr *def);
|
esxVMX_ParseVNC(virConfPtr conf, virDomainGraphicsDefPtr *def);
|
||||||
@ -96,7 +96,7 @@ esxVMX_FormatFileName(esxVI_Context *ctx, const char *src);
|
|||||||
|
|
||||||
char *
|
char *
|
||||||
esxVMX_FormatConfig(esxVI_Context *ctx, virDomainDefPtr def,
|
esxVMX_FormatConfig(esxVI_Context *ctx, virDomainDefPtr def,
|
||||||
esxVI_APIVersion apiVersion);
|
esxVI_ProductVersion productVersion);
|
||||||
|
|
||||||
int
|
int
|
||||||
esxVMX_FormatVNC(virDomainGraphicsDefPtr def, virBufferPtr buffer);
|
esxVMX_FormatVNC(virDomainGraphicsDefPtr def, virBufferPtr buffer);
|
||||||
|
@ -17,7 +17,8 @@ static char *abs_srcdir = NULL;
|
|||||||
# define MAX_FILE 4096
|
# define MAX_FILE 4096
|
||||||
|
|
||||||
static int
|
static int
|
||||||
testCompareFiles(const char *vmx, const char *xml, esxVI_APIVersion apiVersion)
|
testCompareFiles(const char *vmx, const char *xml,
|
||||||
|
esxVI_ProductVersion productVersion)
|
||||||
{
|
{
|
||||||
int result = -1;
|
int result = -1;
|
||||||
char vmxData[MAX_FILE];
|
char vmxData[MAX_FILE];
|
||||||
@ -37,7 +38,7 @@ testCompareFiles(const char *vmx, const char *xml, esxVI_APIVersion apiVersion)
|
|||||||
}
|
}
|
||||||
|
|
||||||
def = esxVMX_ParseConfig(NULL, vmxData, "datastore", "directory",
|
def = esxVMX_ParseConfig(NULL, vmxData, "datastore", "directory",
|
||||||
apiVersion);
|
productVersion);
|
||||||
|
|
||||||
if (def == NULL) {
|
if (def == NULL) {
|
||||||
err = virGetLastError();
|
err = virGetLastError();
|
||||||
@ -70,7 +71,7 @@ testCompareFiles(const char *vmx, const char *xml, esxVI_APIVersion apiVersion)
|
|||||||
struct testInfo {
|
struct testInfo {
|
||||||
const char *input;
|
const char *input;
|
||||||
const char *output;
|
const char *output;
|
||||||
esxVI_APIVersion version;
|
esxVI_ProductVersion version;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int
|
static int
|
||||||
@ -112,7 +113,7 @@ mymain(int argc, char **argv)
|
|||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
# define DO_TEST(_in, _out, _version) \
|
# define DO_TEST(_in, _out, _version) \
|
||||||
do { \
|
do { \
|
||||||
struct testInfo info = { _in, _out, _version }; \
|
struct testInfo info = { _in, _out, _version }; \
|
||||||
virResetLastError(); \
|
virResetLastError(); \
|
||||||
@ -122,58 +123,58 @@ mymain(int argc, char **argv)
|
|||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
DO_TEST("case-insensitive-1", "case-insensitive-1", esxVI_APIVersion_25);
|
DO_TEST("case-insensitive-1", "case-insensitive-1", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("case-insensitive-2", "case-insensitive-2", esxVI_APIVersion_25);
|
DO_TEST("case-insensitive-2", "case-insensitive-2", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("minimal", "minimal", esxVI_APIVersion_25);
|
DO_TEST("minimal", "minimal", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("minimal-64bit", "minimal-64bit", esxVI_APIVersion_25);
|
DO_TEST("minimal-64bit", "minimal-64bit", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("graphics-vnc", "graphics-vnc", esxVI_APIVersion_25);
|
DO_TEST("graphics-vnc", "graphics-vnc", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("scsi-driver", "scsi-driver", esxVI_APIVersion_25);
|
DO_TEST("scsi-driver", "scsi-driver", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("scsi-writethrough", "scsi-writethrough", esxVI_APIVersion_25);
|
DO_TEST("scsi-writethrough", "scsi-writethrough", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("harddisk-scsi-file", "harddisk-scsi-file", esxVI_APIVersion_25);
|
DO_TEST("harddisk-scsi-file", "harddisk-scsi-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("harddisk-ide-file", "harddisk-ide-file", esxVI_APIVersion_25);
|
DO_TEST("harddisk-ide-file", "harddisk-ide-file", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("cdrom-scsi-file", "cdrom-scsi-file", esxVI_APIVersion_25);
|
DO_TEST("cdrom-scsi-file", "cdrom-scsi-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("cdrom-scsi-device", "cdrom-scsi-device", esxVI_APIVersion_25);
|
DO_TEST("cdrom-scsi-device", "cdrom-scsi-device", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("cdrom-ide-file", "cdrom-ide-file", esxVI_APIVersion_25);
|
DO_TEST("cdrom-ide-file", "cdrom-ide-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("cdrom-ide-device", "cdrom-ide-device", esxVI_APIVersion_25);
|
DO_TEST("cdrom-ide-device", "cdrom-ide-device", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("floppy-file", "floppy-file", esxVI_APIVersion_25);
|
DO_TEST("floppy-file", "floppy-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("floppy-device", "floppy-device", esxVI_APIVersion_25);
|
DO_TEST("floppy-device", "floppy-device", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("ethernet-e1000", "ethernet-e1000", esxVI_APIVersion_25);
|
DO_TEST("ethernet-e1000", "ethernet-e1000", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-vmxnet2", "ethernet-vmxnet2", esxVI_APIVersion_25);
|
DO_TEST("ethernet-vmxnet2", "ethernet-vmxnet2", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("ethernet-custom", "ethernet-custom", esxVI_APIVersion_25);
|
DO_TEST("ethernet-custom", "ethernet-custom", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-bridged", "ethernet-bridged", esxVI_APIVersion_25);
|
DO_TEST("ethernet-bridged", "ethernet-bridged", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("ethernet-generated", "ethernet-generated", esxVI_APIVersion_25);
|
DO_TEST("ethernet-generated", "ethernet-generated", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-static", "ethernet-static", esxVI_APIVersion_25);
|
DO_TEST("ethernet-static", "ethernet-static", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-vpx", "ethernet-vpx", esxVI_APIVersion_25);
|
DO_TEST("ethernet-vpx", "ethernet-vpx", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-other", "ethernet-other", esxVI_APIVersion_25);
|
DO_TEST("ethernet-other", "ethernet-other", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("serial-file", "serial-file", esxVI_APIVersion_25);
|
DO_TEST("serial-file", "serial-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("serial-device", "serial-device", esxVI_APIVersion_25);
|
DO_TEST("serial-device", "serial-device", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("serial-pipe-client-app", "serial-pipe", esxVI_APIVersion_25);
|
DO_TEST("serial-pipe-client-app", "serial-pipe", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("serial-pipe-server-vm", "serial-pipe", esxVI_APIVersion_25);
|
DO_TEST("serial-pipe-server-vm", "serial-pipe", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("serial-pipe-client-app", "serial-pipe", esxVI_APIVersion_25);
|
DO_TEST("serial-pipe-client-app", "serial-pipe", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("serial-pipe-server-vm", "serial-pipe", esxVI_APIVersion_25);
|
DO_TEST("serial-pipe-server-vm", "serial-pipe", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("parallel-file", "parallel-file", esxVI_APIVersion_25);
|
DO_TEST("parallel-file", "parallel-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("parallel-device", "parallel-device", esxVI_APIVersion_25);
|
DO_TEST("parallel-device", "parallel-device", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("esx-in-the-wild-1", "esx-in-the-wild-1", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-1", "esx-in-the-wild-1", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("esx-in-the-wild-2", "esx-in-the-wild-2", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-2", "esx-in-the-wild-2", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("esx-in-the-wild-3", "esx-in-the-wild-3", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-3", "esx-in-the-wild-3", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("esx-in-the-wild-4", "esx-in-the-wild-4", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-4", "esx-in-the-wild-4", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("gsx-in-the-wild-1", "gsx-in-the-wild-1", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-1", "gsx-in-the-wild-1", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("gsx-in-the-wild-2", "gsx-in-the-wild-2", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-2", "gsx-in-the-wild-2", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("gsx-in-the-wild-3", "gsx-in-the-wild-3", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-3", "gsx-in-the-wild-3", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("gsx-in-the-wild-4", "gsx-in-the-wild-4", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-4", "gsx-in-the-wild-4", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
return result == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
return result == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,8 @@ testESXCapsInit(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
testCompareFiles(const char *xml, const char *vmx, esxVI_APIVersion apiVersion)
|
testCompareFiles(const char *xml, const char *vmx,
|
||||||
|
esxVI_ProductVersion productVersion)
|
||||||
{
|
{
|
||||||
int result = -1;
|
int result = -1;
|
||||||
char xmlData[MAX_FILE];
|
char xmlData[MAX_FILE];
|
||||||
@ -89,7 +90,7 @@ testCompareFiles(const char *xml, const char *vmx, esxVI_APIVersion apiVersion)
|
|||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
formatted = esxVMX_FormatConfig(NULL, def, apiVersion);
|
formatted = esxVMX_FormatConfig(NULL, def, productVersion);
|
||||||
|
|
||||||
if (formatted == NULL) {
|
if (formatted == NULL) {
|
||||||
goto failure;
|
goto failure;
|
||||||
@ -112,7 +113,7 @@ testCompareFiles(const char *xml, const char *vmx, esxVI_APIVersion apiVersion)
|
|||||||
struct testInfo {
|
struct testInfo {
|
||||||
const char *input;
|
const char *input;
|
||||||
const char *output;
|
const char *output;
|
||||||
esxVI_APIVersion version;
|
esxVI_ProductVersion version;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int
|
static int
|
||||||
@ -170,52 +171,52 @@ mymain(int argc, char **argv)
|
|||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
DO_TEST("minimal", "minimal", esxVI_APIVersion_25);
|
DO_TEST("minimal", "minimal", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("minimal-64bit", "minimal-64bit", esxVI_APIVersion_25);
|
DO_TEST("minimal-64bit", "minimal-64bit", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("graphics-vnc", "graphics-vnc", esxVI_APIVersion_25);
|
DO_TEST("graphics-vnc", "graphics-vnc", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("scsi-driver", "scsi-driver", esxVI_APIVersion_25);
|
DO_TEST("scsi-driver", "scsi-driver", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("scsi-writethrough", "scsi-writethrough", esxVI_APIVersion_25);
|
DO_TEST("scsi-writethrough", "scsi-writethrough", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("harddisk-scsi-file", "harddisk-scsi-file", esxVI_APIVersion_25);
|
DO_TEST("harddisk-scsi-file", "harddisk-scsi-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("harddisk-ide-file", "harddisk-ide-file", esxVI_APIVersion_25);
|
DO_TEST("harddisk-ide-file", "harddisk-ide-file", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("cdrom-scsi-file", "cdrom-scsi-file", esxVI_APIVersion_25);
|
DO_TEST("cdrom-scsi-file", "cdrom-scsi-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("cdrom-scsi-device", "cdrom-scsi-device", esxVI_APIVersion_25);
|
DO_TEST("cdrom-scsi-device", "cdrom-scsi-device", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("cdrom-ide-file", "cdrom-ide-file", esxVI_APIVersion_25);
|
DO_TEST("cdrom-ide-file", "cdrom-ide-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("cdrom-ide-device", "cdrom-ide-device", esxVI_APIVersion_25);
|
DO_TEST("cdrom-ide-device", "cdrom-ide-device", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("floppy-file", "floppy-file", esxVI_APIVersion_25);
|
DO_TEST("floppy-file", "floppy-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("floppy-device", "floppy-device", esxVI_APIVersion_25);
|
DO_TEST("floppy-device", "floppy-device", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("ethernet-e1000", "ethernet-e1000", esxVI_APIVersion_25);
|
DO_TEST("ethernet-e1000", "ethernet-e1000", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-vmxnet2", "ethernet-vmxnet2", esxVI_APIVersion_25);
|
DO_TEST("ethernet-vmxnet2", "ethernet-vmxnet2", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("ethernet-custom", "ethernet-custom", esxVI_APIVersion_25);
|
DO_TEST("ethernet-custom", "ethernet-custom", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-bridged", "ethernet-bridged", esxVI_APIVersion_25);
|
DO_TEST("ethernet-bridged", "ethernet-bridged", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("ethernet-generated", "ethernet-generated", esxVI_APIVersion_25);
|
DO_TEST("ethernet-generated", "ethernet-generated", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-static", "ethernet-static", esxVI_APIVersion_25);
|
DO_TEST("ethernet-static", "ethernet-static", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-vpx", "ethernet-vpx", esxVI_APIVersion_25);
|
DO_TEST("ethernet-vpx", "ethernet-vpx", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("ethernet-other", "ethernet-other", esxVI_APIVersion_25);
|
DO_TEST("ethernet-other", "ethernet-other", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("serial-file", "serial-file", esxVI_APIVersion_25);
|
DO_TEST("serial-file", "serial-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("serial-device", "serial-device", esxVI_APIVersion_25);
|
DO_TEST("serial-device", "serial-device", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("serial-pipe", "serial-pipe", esxVI_APIVersion_25);
|
DO_TEST("serial-pipe", "serial-pipe", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("parallel-file", "parallel-file", esxVI_APIVersion_25);
|
DO_TEST("parallel-file", "parallel-file", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("parallel-device", "parallel-device", esxVI_APIVersion_25);
|
DO_TEST("parallel-device", "parallel-device", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("esx-in-the-wild-1", "esx-in-the-wild-1", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-1", "esx-in-the-wild-1", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("esx-in-the-wild-2", "esx-in-the-wild-2", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-2", "esx-in-the-wild-2", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("esx-in-the-wild-3", "esx-in-the-wild-3", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-3", "esx-in-the-wild-3", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("esx-in-the-wild-4", "esx-in-the-wild-4", esxVI_APIVersion_25);
|
DO_TEST("esx-in-the-wild-4", "esx-in-the-wild-4", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
DO_TEST("gsx-in-the-wild-1", "gsx-in-the-wild-1", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-1", "gsx-in-the-wild-1", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("gsx-in-the-wild-2", "gsx-in-the-wild-2", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-2", "gsx-in-the-wild-2", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("gsx-in-the-wild-3", "gsx-in-the-wild-3", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-3", "gsx-in-the-wild-3", esxVI_ProductVersion_ESX35);
|
||||||
DO_TEST("gsx-in-the-wild-4", "gsx-in-the-wild-4", esxVI_APIVersion_25);
|
DO_TEST("gsx-in-the-wild-4", "gsx-in-the-wild-4", esxVI_ProductVersion_ESX35);
|
||||||
|
|
||||||
virCapabilitiesFree(caps);
|
virCapabilitiesFree(caps);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user