2008-01-29 18:15:54 +00:00
|
|
|
#include <config.h>
|
2007-11-26 12:03:34 +00:00
|
|
|
|
2006-08-24 15:05:19 +00:00
|
|
|
#include <stdio.h>
|
2007-11-30 22:51:54 +00:00
|
|
|
#include <stdlib.h>
|
Wed Dec 5 13:48:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
* python/libvir.c, python/libvirt_wrap.h, qemud/qemud.c,
qemud/remote.c, src/internal.h, src/openvz_conf.c,
src/openvz_driver.c, src/proxy_internal.h, src/qemu_conf.c,
src/qemu_driver.c, src/remote_internal.h, src/test.h, src/util.c,
src/xen_unified.c, src/xen_unified.h, tests/nodeinfotest.c,
tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c, tests/reconnect.c,
tests/sexpr2xmltest.c, tests/virshtest.c, tests/xencapstest.c,
tests/xmconfigtest.c, tests/xml2sexprtest.c:
Change #include <> to #include "" for local includes.
Removed many includes from src/internal.h and put them in
the C files which actually use them.
Removed <ansidecl.h> - unused.
Added a comment around __func__.
Removed a clashing redefinition of VERSION symbol.
All limits (PATH_MAX etc) now done in src/internal.h, so we
don't need to include those headers in other files.
2007-12-05 13:56:22 +00:00
|
|
|
#include <string.h>
|
2007-04-11 16:06:30 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
2008-04-26 14:22:02 +00:00
|
|
|
#include <unistd.h>
|
2007-04-11 16:06:30 +00:00
|
|
|
|
Wed Dec 5 13:48:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
* python/libvir.c, python/libvirt_wrap.h, qemud/qemud.c,
qemud/remote.c, src/internal.h, src/openvz_conf.c,
src/openvz_driver.c, src/proxy_internal.h, src/qemu_conf.c,
src/qemu_driver.c, src/remote_internal.h, src/test.h, src/util.c,
src/xen_unified.c, src/xen_unified.h, tests/nodeinfotest.c,
tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c, tests/reconnect.c,
tests/sexpr2xmltest.c, tests/virshtest.c, tests/xencapstest.c,
tests/xmconfigtest.c, tests/xml2sexprtest.c:
Change #include <> to #include "" for local includes.
Removed many includes from src/internal.h and put them in
the C files which actually use them.
Removed <ansidecl.h> - unused.
Added a comment around __func__.
Removed a clashing redefinition of VERSION symbol.
All limits (PATH_MAX etc) now done in src/internal.h, so we
don't need to include those headers in other files.
2007-12-05 13:56:22 +00:00
|
|
|
#include "internal.h"
|
Move xen driver code into src/xen/ directory
* src/Makefile.am, src/proxy_internal.c, src/proxy_internal.h
src/sexpr.c, src/sexpr.h, src/xen_unified.c, src/xen_unified.h,
src/xen_internal.c, src/xen_internal.h, src/xen_inotify.c,
src/xen_inotify.h, src/xend_internal.c, src/xend_internal.h,
src/xm_internal.c, src/xm_internal.h, src/xs_internal.c,
src/xs_internal.h: Move to src/xen/ directory
* proxy/Makefile.am, proxy/libvirt_proxy.c, src/Makefile.am,
src/libvirt.c, tests/sexpr2xmltest.c, tests/statstest.c,
tests/xencapstest.c, tests/xmconfigtest.c, tests/xml2sexprtest.c:
Adapt to changed xen location
* src/stats_linux.h, src/stats_linux.c: Remove xen specific block
stats APIs
* src/qemu_driver.c, src/uml_driver.c: Add missing sys/un.h include
uncovered after change to stats_linux.h
* src/xen/block_stats.h, src/xen/block_stats.c: Add xen specific
block stats APIs
2009-09-15 15:38:33 +00:00
|
|
|
#include "xen/xend_internal.h"
|
2013-03-13 20:39:34 +00:00
|
|
|
#include "xen/xen_driver.h"
|
2014-08-14 18:43:32 +00:00
|
|
|
#include "xenconfig/xen_sxpr.h"
|
2006-08-24 15:05:19 +00:00
|
|
|
#include "testutils.h"
|
2008-07-25 13:17:27 +00:00
|
|
|
#include "testutilsxen.h"
|
2013-04-03 10:36:23 +00:00
|
|
|
#include "virstring.h"
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2013-06-07 15:10:28 +00:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2008-07-25 13:17:27 +00:00
|
|
|
static virCapsPtr caps;
|
2013-03-31 18:03:42 +00:00
|
|
|
static virDomainXMLOptionPtr xmlopt;
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2011-04-24 22:25:10 +00:00
|
|
|
static int
|
2015-12-14 06:41:48 +00:00
|
|
|
testCompareFiles(const char *xml, const char *sexpr)
|
2011-04-24 22:25:10 +00:00
|
|
|
{
|
2006-08-24 15:05:19 +00:00
|
|
|
char *gotsexpr = NULL;
|
2006-10-06 15:32:48 +00:00
|
|
|
int ret = -1;
|
2008-07-25 13:17:27 +00:00
|
|
|
virDomainDefPtr def = NULL;
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2016-09-22 15:14:17 +00:00
|
|
|
if (!(def = virDomainDefParseFile(xml, caps, xmlopt, NULL,
|
2015-04-23 15:10:15 +00:00
|
|
|
VIR_DOMAIN_DEF_PARSE_INACTIVE)))
|
2008-07-25 13:17:27 +00:00
|
|
|
goto fail;
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2014-01-10 17:18:03 +00:00
|
|
|
if (!virDomainDefCheckABIStability(def, def)) {
|
|
|
|
fprintf(stderr, "ABI stability check failed on %s", xml);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2015-12-15 02:31:39 +00:00
|
|
|
if (!(gotsexpr = xenFormatSxpr(NULL, def)))
|
2007-04-11 16:06:30 +00:00
|
|
|
goto fail;
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2016-05-26 15:01:53 +00:00
|
|
|
if (virTestCompareToFile(gotsexpr, sexpr) < 0)
|
2007-04-11 16:06:30 +00:00
|
|
|
goto fail;
|
2006-08-24 15:05:19 +00:00
|
|
|
|
2006-10-06 15:32:48 +00:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
fail:
|
2012-02-02 23:16:43 +00:00
|
|
|
VIR_FREE(gotsexpr);
|
2011-04-24 22:25:10 +00:00
|
|
|
virDomainDefFree(def);
|
2006-10-06 15:32:48 +00:00
|
|
|
|
|
|
|
return ret;
|
2006-08-24 15:05:19 +00:00
|
|
|
}
|
|
|
|
|
2008-04-26 14:22:02 +00:00
|
|
|
struct testInfo {
|
|
|
|
const char *input;
|
|
|
|
const char *output;
|
|
|
|
const char *name;
|
|
|
|
};
|
2007-06-07 13:50:18 +00:00
|
|
|
|
2011-04-24 22:25:10 +00:00
|
|
|
static int
|
|
|
|
testCompareHelper(const void *data)
|
|
|
|
{
|
|
|
|
int result = -1;
|
2008-04-26 14:22:02 +00:00
|
|
|
const struct testInfo *info = data;
|
2011-04-24 22:25:10 +00:00
|
|
|
char *xml = NULL;
|
|
|
|
char *args = NULL;
|
|
|
|
|
|
|
|
if (virAsprintf(&xml, "%s/xml2sexprdata/xml2sexpr-%s.xml",
|
|
|
|
abs_srcdir, info->input) < 0 ||
|
|
|
|
virAsprintf(&args, "%s/xml2sexprdata/xml2sexpr-%s.sexpr",
|
|
|
|
abs_srcdir, info->output) < 0) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2006-10-09 14:32:07 +00:00
|
|
|
|
2015-12-14 06:41:48 +00:00
|
|
|
result = testCompareFiles(xml, args);
|
2011-04-24 22:25:10 +00:00
|
|
|
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2012-02-02 23:16:43 +00:00
|
|
|
VIR_FREE(xml);
|
|
|
|
VIR_FREE(args);
|
2011-04-24 22:25:10 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2007-07-18 21:08:22 +00:00
|
|
|
|
2008-05-29 15:31:49 +00:00
|
|
|
static int
|
2011-04-29 16:21:20 +00:00
|
|
|
mymain(void)
|
2006-08-24 15:05:19 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2006-10-09 14:32:07 +00:00
|
|
|
|
2015-12-14 06:41:48 +00:00
|
|
|
#define DO_TEST(in, out, name) \
|
2008-04-26 14:22:02 +00:00
|
|
|
do { \
|
2015-12-14 06:41:48 +00:00
|
|
|
struct testInfo info = { in, out, name }; \
|
2009-04-01 10:31:01 +00:00
|
|
|
virResetLastError(); \
|
2016-05-26 15:01:50 +00:00
|
|
|
if (virTestRun("Xen XML-2-SEXPR " in " -> " out, \
|
|
|
|
testCompareHelper, &info) < 0) \
|
2008-04-26 14:22:02 +00:00
|
|
|
ret = -1; \
|
|
|
|
} while (0)
|
|
|
|
|
2008-07-25 13:17:27 +00:00
|
|
|
if (!(caps = testXenCapsInit()))
|
2012-03-22 11:33:35 +00:00
|
|
|
return EXIT_FAILURE;
|
2008-07-25 13:17:27 +00:00
|
|
|
|
2013-03-13 20:39:34 +00:00
|
|
|
if (!(xmlopt = xenDomainXMLConfInit()))
|
2013-03-05 15:17:24 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2015-12-14 06:41:48 +00:00
|
|
|
DO_TEST("pv", "pv", "pvtest");
|
|
|
|
DO_TEST("fv", "fv", "fvtest");
|
|
|
|
DO_TEST("pv", "pv", "pvtest");
|
|
|
|
DO_TEST("fv", "fv-v2", "fvtest");
|
|
|
|
DO_TEST("fv-vncunused", "fv-vncunused", "fvtest");
|
|
|
|
DO_TEST("pv-vfb-new", "pv-vfb-new", "pvtest");
|
|
|
|
DO_TEST("pv-vfb-new-auto", "pv-vfb-new-auto", "pvtest");
|
|
|
|
DO_TEST("pv-bootloader", "pv-bootloader", "pvtest");
|
|
|
|
DO_TEST("pv-bootloader-cmdline", "pv-bootloader-cmdline", "pvtest");
|
|
|
|
DO_TEST("pv-vcpus", "pv-vcpus", "pvtest");
|
|
|
|
|
|
|
|
DO_TEST("disk-file", "disk-file", "pvtest");
|
|
|
|
DO_TEST("disk-block", "disk-block", "pvtest");
|
|
|
|
DO_TEST("disk-block-shareable", "disk-block-shareable", "pvtest");
|
|
|
|
DO_TEST("disk-drv-loop", "disk-drv-loop", "pvtest");
|
|
|
|
DO_TEST("disk-drv-blkback", "disk-drv-blkback", "pvtest");
|
|
|
|
DO_TEST("disk-drv-blktap", "disk-drv-blktap", "pvtest");
|
|
|
|
DO_TEST("disk-drv-blktap-raw", "disk-drv-blktap-raw", "pvtest");
|
|
|
|
DO_TEST("disk-drv-blktap-qcow", "disk-drv-blktap-qcow", "pvtest");
|
|
|
|
DO_TEST("disk-drv-blktap2", "disk-drv-blktap2", "pvtest");
|
|
|
|
DO_TEST("disk-drv-blktap2-raw", "disk-drv-blktap2-raw", "pvtest");
|
|
|
|
|
|
|
|
DO_TEST("curmem", "curmem", "rhel5");
|
|
|
|
DO_TEST("net-routed", "net-routed", "pvtest");
|
|
|
|
DO_TEST("net-bridged", "net-bridged", "pvtest");
|
|
|
|
DO_TEST("net-e1000", "net-e1000", "pvtest");
|
|
|
|
DO_TEST("bridge-ipaddr", "bridge-ipaddr", "pvtest");
|
|
|
|
DO_TEST("no-source-cdrom", "no-source-cdrom", "test");
|
|
|
|
DO_TEST("pv-localtime", "pv-localtime", "pvtest");
|
|
|
|
DO_TEST("pci-devs", "pci-devs", "pvtest");
|
|
|
|
|
|
|
|
DO_TEST("fv-utc", "fv-utc", "fvtest");
|
|
|
|
DO_TEST("fv-localtime", "fv-localtime", "fvtest");
|
|
|
|
DO_TEST("fv-usbmouse", "fv-usbmouse", "fvtest");
|
|
|
|
DO_TEST("fv-usbmouse", "fv-usbmouse", "fvtest");
|
|
|
|
DO_TEST("fv-kernel", "fv-kernel", "fvtest");
|
|
|
|
DO_TEST("fv-force-hpet", "fv-force-hpet", "fvtest");
|
|
|
|
DO_TEST("fv-force-nohpet", "fv-force-nohpet", "fvtest");
|
|
|
|
|
|
|
|
DO_TEST("fv-serial-null", "fv-serial-null", "fvtest");
|
|
|
|
DO_TEST("fv-serial-file", "fv-serial-file", "fvtest");
|
|
|
|
DO_TEST("fv-serial-dev-2-ports", "fv-serial-dev-2-ports", "fvtest");
|
|
|
|
DO_TEST("fv-serial-dev-2nd-port", "fv-serial-dev-2nd-port", "fvtest");
|
|
|
|
DO_TEST("fv-serial-stdio", "fv-serial-stdio", "fvtest");
|
|
|
|
DO_TEST("fv-serial-pty", "fv-serial-pty", "fvtest");
|
|
|
|
DO_TEST("fv-serial-pipe", "fv-serial-pipe", "fvtest");
|
|
|
|
DO_TEST("fv-serial-tcp", "fv-serial-tcp", "fvtest");
|
|
|
|
DO_TEST("fv-serial-udp", "fv-serial-udp", "fvtest");
|
|
|
|
DO_TEST("fv-serial-tcp-telnet", "fv-serial-tcp-telnet", "fvtest");
|
|
|
|
DO_TEST("fv-serial-unix", "fv-serial-unix", "fvtest");
|
|
|
|
DO_TEST("fv-parallel-tcp", "fv-parallel-tcp", "fvtest");
|
|
|
|
|
|
|
|
DO_TEST("fv-sound", "fv-sound", "fvtest");
|
|
|
|
|
|
|
|
DO_TEST("fv-net-netfront", "fv-net-netfront", "fvtest");
|
2016-01-05 00:46:31 +00:00
|
|
|
DO_TEST("fv-net-rate", "fv-net-rate", "fvtest");
|
2015-12-14 06:41:48 +00:00
|
|
|
|
|
|
|
DO_TEST("boot-grub", "boot-grub", "fvtest");
|
|
|
|
DO_TEST("escape", "escape", "fvtest");
|
2010-08-23 13:00:22 +00:00
|
|
|
|
2013-02-01 12:26:18 +00:00
|
|
|
virObjectUnref(caps);
|
2013-03-31 18:03:42 +00:00
|
|
|
virObjectUnref(xmlopt);
|
2008-07-25 13:17:27 +00:00
|
|
|
|
2014-03-17 09:38:38 +00:00
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2006-08-24 15:05:19 +00:00
|
|
|
}
|
2007-11-30 22:51:54 +00:00
|
|
|
|
2008-05-29 15:31:49 +00:00
|
|
|
VIRT_TEST_MAIN(mymain)
|