2009-05-21 14:22:51 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2013-04-16 13:41:44 +00:00
|
|
|
#include "testutils.h"
|
|
|
|
|
2009-05-21 14:22:51 +00:00
|
|
|
#ifdef WITH_QEMU
|
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
2010-12-17 16:41:51 +00:00
|
|
|
# include "qemu/qemu_command.h"
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "testutilsqemu.h"
|
2013-04-03 10:36:23 +00:00
|
|
|
# include "virstring.h"
|
2009-05-21 14:22:51 +00:00
|
|
|
|
2013-06-07 15:10:28 +00:00
|
|
|
# define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2012-11-28 16:43:10 +00:00
|
|
|
static virQEMUDriver driver;
|
2009-05-21 14:22:51 +00:00
|
|
|
|
|
|
|
static int blankProblemElements(char *data)
|
|
|
|
{
|
|
|
|
if (virtTestClearLineRegex("<name>[[:alnum:]]+</name>", data) < 0 ||
|
|
|
|
virtTestClearLineRegex("<uuid>([[:alnum:]]|-)+</uuid>", data) < 0 ||
|
2012-02-23 00:48:38 +00:00
|
|
|
virtTestClearLineRegex("<memory.*>[[:digit:]]+</memory>", data) < 0 ||
|
|
|
|
virtTestClearLineRegex("<currentMemory.*>[[:digit:]]+</currentMemory>",
|
|
|
|
data) < 0 ||
|
2009-05-21 14:22:51 +00:00
|
|
|
virtTestClearLineRegex("<readonly/>", data) < 0 ||
|
|
|
|
virtTestClearLineRegex("<sharable/>", data) < 0)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int testCompareXMLToArgvFiles(const char *xml,
|
tests: silence qemuargv2xmltest noise
Before this patch, the testsuite was noisy:
TEST: qemuargv2xmltest
........................................ 40
................20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument '-unknown', adding to the qemu namespace
20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument 'parameter', adding to the qemu namespace
. 57 OK
PASS: qemuargv2xmltest
It's not a real failure (which is why the test was completing
successfully), so much as an intentional warning to the user that use
of the qemu namespace has the potential for undefined effects that
leaked through the default logging behavior. After this patch series,
all tests can access any logged data, and this particular test can
explicitly check for the presence or absence of the warning, such that
the test output becomes:
TEST: qemuargv2xmltest
........................................ 40
................. 57 OK
PASS: qemuargv2xmltest
* tests/testutils.h (virtTestLogContentAndReset): New prototype.
* tests/testutils.c (struct virtTestLogData): New struct.
(virtTestLogOutput, virtTestLogClose, virtTestLogContentAndReset):
New functions.
(virtTestMain): Always capture log data emitted during tests.
* tests/qemuargv2xmltest.c (testCompareXMLToArgvHelper, mymain):
Use flag to mark which tests expect noisy stderr.
(testCompareXMLToArgvFiles): Add parameter to test whether stderr
was appropriately silent.
2010-09-10 16:25:49 +00:00
|
|
|
const char *cmdfile,
|
|
|
|
bool expect_warning) {
|
2011-04-24 22:25:10 +00:00
|
|
|
char *expectxml = NULL;
|
2009-05-21 14:22:51 +00:00
|
|
|
char *actualxml = NULL;
|
2011-04-24 22:25:10 +00:00
|
|
|
char *cmd = NULL;
|
2009-05-21 14:22:51 +00:00
|
|
|
int ret = -1;
|
|
|
|
virDomainDefPtr vmdef = NULL;
|
tests: silence qemuargv2xmltest noise
Before this patch, the testsuite was noisy:
TEST: qemuargv2xmltest
........................................ 40
................20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument '-unknown', adding to the qemu namespace
20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument 'parameter', adding to the qemu namespace
. 57 OK
PASS: qemuargv2xmltest
It's not a real failure (which is why the test was completing
successfully), so much as an intentional warning to the user that use
of the qemu namespace has the potential for undefined effects that
leaked through the default logging behavior. After this patch series,
all tests can access any logged data, and this particular test can
explicitly check for the presence or absence of the warning, such that
the test output becomes:
TEST: qemuargv2xmltest
........................................ 40
................. 57 OK
PASS: qemuargv2xmltest
* tests/testutils.h (virtTestLogContentAndReset): New prototype.
* tests/testutils.c (struct virtTestLogData): New struct.
(virtTestLogOutput, virtTestLogClose, virtTestLogContentAndReset):
New functions.
(virtTestMain): Always capture log data emitted during tests.
* tests/qemuargv2xmltest.c (testCompareXMLToArgvHelper, mymain):
Use flag to mark which tests expect noisy stderr.
(testCompareXMLToArgvFiles): Add parameter to test whether stderr
was appropriately silent.
2010-09-10 16:25:49 +00:00
|
|
|
char *log;
|
2009-05-21 14:22:51 +00:00
|
|
|
|
2011-04-24 22:25:10 +00:00
|
|
|
if (virtTestLoadFile(cmdfile, &cmd) < 0)
|
2009-05-21 14:22:51 +00:00
|
|
|
goto fail;
|
2011-04-24 22:25:10 +00:00
|
|
|
if (virtTestLoadFile(xml, &expectxml) < 0)
|
2009-05-21 14:22:51 +00:00
|
|
|
goto fail;
|
|
|
|
|
2013-03-31 18:03:42 +00:00
|
|
|
if (!(vmdef = qemuParseCommandLineString(driver.caps, driver.xmlopt,
|
2013-03-05 15:17:24 +00:00
|
|
|
cmd, NULL, NULL, NULL)))
|
2009-05-21 14:22:51 +00:00
|
|
|
goto fail;
|
|
|
|
|
tests: silence qemuargv2xmltest noise
Before this patch, the testsuite was noisy:
TEST: qemuargv2xmltest
........................................ 40
................20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument '-unknown', adding to the qemu namespace
20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument 'parameter', adding to the qemu namespace
. 57 OK
PASS: qemuargv2xmltest
It's not a real failure (which is why the test was completing
successfully), so much as an intentional warning to the user that use
of the qemu namespace has the potential for undefined effects that
leaked through the default logging behavior. After this patch series,
all tests can access any logged data, and this particular test can
explicitly check for the presence or absence of the warning, such that
the test output becomes:
TEST: qemuargv2xmltest
........................................ 40
................. 57 OK
PASS: qemuargv2xmltest
* tests/testutils.h (virtTestLogContentAndReset): New prototype.
* tests/testutils.c (struct virtTestLogData): New struct.
(virtTestLogOutput, virtTestLogClose, virtTestLogContentAndReset):
New functions.
(virtTestMain): Always capture log data emitted during tests.
* tests/qemuargv2xmltest.c (testCompareXMLToArgvHelper, mymain):
Use flag to mark which tests expect noisy stderr.
(testCompareXMLToArgvFiles): Add parameter to test whether stderr
was appropriately silent.
2010-09-10 16:25:49 +00:00
|
|
|
if ((log = virtTestLogContentAndReset()) == NULL)
|
|
|
|
goto fail;
|
|
|
|
if ((*log != '\0') != expect_warning) {
|
2012-02-02 23:16:43 +00:00
|
|
|
VIR_FREE(log);
|
tests: silence qemuargv2xmltest noise
Before this patch, the testsuite was noisy:
TEST: qemuargv2xmltest
........................................ 40
................20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument '-unknown', adding to the qemu namespace
20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument 'parameter', adding to the qemu namespace
. 57 OK
PASS: qemuargv2xmltest
It's not a real failure (which is why the test was completing
successfully), so much as an intentional warning to the user that use
of the qemu namespace has the potential for undefined effects that
leaked through the default logging behavior. After this patch series,
all tests can access any logged data, and this particular test can
explicitly check for the presence or absence of the warning, such that
the test output becomes:
TEST: qemuargv2xmltest
........................................ 40
................. 57 OK
PASS: qemuargv2xmltest
* tests/testutils.h (virtTestLogContentAndReset): New prototype.
* tests/testutils.c (struct virtTestLogData): New struct.
(virtTestLogOutput, virtTestLogClose, virtTestLogContentAndReset):
New functions.
(virtTestMain): Always capture log data emitted during tests.
* tests/qemuargv2xmltest.c (testCompareXMLToArgvHelper, mymain):
Use flag to mark which tests expect noisy stderr.
(testCompareXMLToArgvFiles): Add parameter to test whether stderr
was appropriately silent.
2010-09-10 16:25:49 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
2012-02-02 23:16:43 +00:00
|
|
|
VIR_FREE(log);
|
tests: silence qemuargv2xmltest noise
Before this patch, the testsuite was noisy:
TEST: qemuargv2xmltest
........................................ 40
................20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument '-unknown', adding to the qemu namespace
20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument 'parameter', adding to the qemu namespace
. 57 OK
PASS: qemuargv2xmltest
It's not a real failure (which is why the test was completing
successfully), so much as an intentional warning to the user that use
of the qemu namespace has the potential for undefined effects that
leaked through the default logging behavior. After this patch series,
all tests can access any logged data, and this particular test can
explicitly check for the presence or absence of the warning, such that
the test output becomes:
TEST: qemuargv2xmltest
........................................ 40
................. 57 OK
PASS: qemuargv2xmltest
* tests/testutils.h (virtTestLogContentAndReset): New prototype.
* tests/testutils.c (struct virtTestLogData): New struct.
(virtTestLogOutput, virtTestLogClose, virtTestLogContentAndReset):
New functions.
(virtTestMain): Always capture log data emitted during tests.
* tests/qemuargv2xmltest.c (testCompareXMLToArgvHelper, mymain):
Use flag to mark which tests expect noisy stderr.
(testCompareXMLToArgvFiles): Add parameter to test whether stderr
was appropriately silent.
2010-09-10 16:25:49 +00:00
|
|
|
|
2010-02-09 18:58:01 +00:00
|
|
|
if (!(actualxml = virDomainDefFormat(vmdef, 0)))
|
2009-05-21 14:22:51 +00:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (blankProblemElements(expectxml) < 0 ||
|
|
|
|
blankProblemElements(actualxml) < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (STRNEQ(expectxml, actualxml)) {
|
|
|
|
virtTestDifference(stderr, expectxml, actualxml);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
fail:
|
2012-02-02 23:16:43 +00:00
|
|
|
VIR_FREE(expectxml);
|
|
|
|
VIR_FREE(actualxml);
|
|
|
|
VIR_FREE(cmd);
|
2009-05-21 14:22:51 +00:00
|
|
|
virDomainDefFree(vmdef);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct testInfo {
|
|
|
|
const char *name;
|
2010-02-09 13:06:56 +00:00
|
|
|
unsigned long long extraFlags;
|
2009-05-21 14:22:51 +00:00
|
|
|
const char *migrateFrom;
|
|
|
|
};
|
|
|
|
|
2011-04-24 22:25:10 +00:00
|
|
|
static int
|
|
|
|
testCompareXMLToArgvHelper(const void *data)
|
|
|
|
{
|
|
|
|
int result = -1;
|
2009-05-21 14:22:51 +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/qemuxml2argvdata/qemuxml2argv-%s.xml",
|
|
|
|
abs_srcdir, info->name) < 0 ||
|
|
|
|
virAsprintf(&args, "%s/qemuxml2argvdata/qemuxml2argv-%s.args",
|
|
|
|
abs_srcdir, info->name) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
result = testCompareXMLToArgvFiles(xml, args, !!info->extraFlags);
|
|
|
|
|
|
|
|
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;
|
2009-05-21 14:22:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2011-04-29 16:21:20 +00:00
|
|
|
mymain(void)
|
2009-05-21 14:22:51 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2013-01-10 21:03:14 +00:00
|
|
|
driver.config = virQEMUDriverConfigNew(false);
|
2009-05-21 14:22:51 +00:00
|
|
|
if ((driver.caps = testQemuCapsInit()) == NULL)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2013-03-11 09:24:29 +00:00
|
|
|
if (!(driver.xmlopt = virQEMUDriverCreateXMLConf(&driver)))
|
2013-03-05 15:17:24 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
2013-09-20 18:13:35 +00:00
|
|
|
# define DO_TEST_FULL(name, extraFlags, migrateFrom) \
|
2009-05-21 14:22:51 +00:00
|
|
|
do { \
|
|
|
|
const struct testInfo info = { name, extraFlags, migrateFrom }; \
|
|
|
|
if (virtTestRun("QEMU ARGV-2-XML " name, \
|
2013-09-20 18:13:35 +00:00
|
|
|
testCompareXMLToArgvHelper, &info) < 0) \
|
2009-05-21 14:22:51 +00:00
|
|
|
ret = -1; \
|
|
|
|
} while (0)
|
|
|
|
|
2010-09-10 02:32:50 +00:00
|
|
|
# define DO_TEST(name) \
|
|
|
|
DO_TEST_FULL(name, 0, NULL)
|
2009-05-21 14:22:51 +00:00
|
|
|
|
|
|
|
setenv("PATH", "/bin", 1);
|
|
|
|
setenv("USER", "test", 1);
|
|
|
|
setenv("LOGNAME", "test", 1);
|
|
|
|
setenv("HOME", "/home/test", 1);
|
|
|
|
unsetenv("TMPDIR");
|
|
|
|
unsetenv("LD_PRELOAD");
|
|
|
|
unsetenv("LD_LIBRARY_PATH");
|
|
|
|
|
|
|
|
/* Can't roundtrip vcpu cpuset attribute */
|
2011-02-07 14:54:08 +00:00
|
|
|
/*DO_TEST("minimal", QEMU_CAPS_NAME);*/
|
2012-08-15 08:16:36 +00:00
|
|
|
DO_TEST("machine-core-on");
|
|
|
|
DO_TEST("machine-core-off");
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST("boot-cdrom");
|
|
|
|
DO_TEST("boot-network");
|
|
|
|
DO_TEST("boot-floppy");
|
2012-01-27 13:49:52 +00:00
|
|
|
DO_TEST("kvmclock");
|
|
|
|
/* This needs <emulator>./qemu.sh</emulator> which doesn't work here. */
|
|
|
|
/*DO_TEST("cpu-kvmclock");*/
|
|
|
|
|
2009-05-21 14:22:51 +00:00
|
|
|
/* Can't roundtrip xenner arch */
|
2010-09-10 02:32:50 +00:00
|
|
|
/*DO_TEST("bootloader");*/
|
2012-09-18 10:32:07 +00:00
|
|
|
|
|
|
|
DO_TEST("reboot-timeout-enabled");
|
|
|
|
DO_TEST("reboot-timeout-disabled");
|
|
|
|
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST("clock-utc");
|
|
|
|
DO_TEST("clock-localtime");
|
|
|
|
DO_TEST("disk-cdrom");
|
|
|
|
DO_TEST("disk-cdrom-empty");
|
|
|
|
DO_TEST("disk-floppy");
|
|
|
|
DO_TEST("disk-many");
|
|
|
|
DO_TEST("disk-virtio");
|
|
|
|
DO_TEST("disk-xenvbd");
|
|
|
|
DO_TEST("disk-drive-boot-disk");
|
|
|
|
DO_TEST("disk-drive-boot-cdrom");
|
|
|
|
DO_TEST("disk-drive-fmt-qcow");
|
2009-05-21 14:22:51 +00:00
|
|
|
/* Can't roundtrip shareable+cache mode option */
|
2010-09-10 02:32:50 +00:00
|
|
|
/*DO_TEST("disk-drive-shared");*/
|
2009-05-21 14:22:51 +00:00
|
|
|
/* Can't roundtrip v1 writethrough option */
|
2010-09-10 02:32:50 +00:00
|
|
|
/*DO_TEST("disk-drive-cache-v1-wt");*/
|
|
|
|
DO_TEST("disk-drive-cache-v1-wb");
|
|
|
|
DO_TEST("disk-drive-cache-v1-none");
|
|
|
|
DO_TEST("disk-drive-error-policy-stop");
|
|
|
|
DO_TEST("disk-drive-error-policy-enospace");
|
2011-10-04 18:17:06 +00:00
|
|
|
DO_TEST("disk-drive-error-policy-wreport-rignore");
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST("disk-drive-cache-v2-wt");
|
|
|
|
DO_TEST("disk-drive-cache-v2-wb");
|
|
|
|
DO_TEST("disk-drive-cache-v2-none");
|
2011-09-02 13:36:58 +00:00
|
|
|
DO_TEST("disk-drive-cache-directsync");
|
2011-09-22 19:33:47 +00:00
|
|
|
DO_TEST("disk-drive-cache-unsafe");
|
2010-12-07 19:57:33 +00:00
|
|
|
DO_TEST("disk-drive-network-nbd");
|
2013-02-25 17:44:23 +00:00
|
|
|
DO_TEST("disk-drive-network-nbd-export");
|
2013-02-25 17:44:25 +00:00
|
|
|
DO_TEST("disk-drive-network-nbd-ipv6");
|
|
|
|
DO_TEST("disk-drive-network-nbd-ipv6-export");
|
2013-02-25 17:44:24 +00:00
|
|
|
DO_TEST("disk-drive-network-nbd-unix");
|
2013-03-21 11:53:49 +00:00
|
|
|
DO_TEST("disk-drive-network-iscsi");
|
2012-11-22 18:10:41 +00:00
|
|
|
DO_TEST("disk-drive-network-gluster");
|
2010-12-07 19:57:33 +00:00
|
|
|
DO_TEST("disk-drive-network-rbd");
|
2013-01-25 02:45:31 +00:00
|
|
|
DO_TEST("disk-drive-network-rbd-ipv6");
|
2011-11-01 01:29:07 +00:00
|
|
|
/* older format using CEPH_ARGS env var */
|
|
|
|
DO_TEST("disk-drive-network-rbd-ceph-env");
|
2010-12-07 19:57:33 +00:00
|
|
|
DO_TEST("disk-drive-network-sheepdog");
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST("disk-usb");
|
|
|
|
DO_TEST("graphics-vnc");
|
2011-01-07 21:03:07 +00:00
|
|
|
DO_TEST("graphics-vnc-socket");
|
2013-04-30 14:26:43 +00:00
|
|
|
DO_TEST("graphics-vnc-websocket");
|
2013-05-21 14:31:49 +00:00
|
|
|
DO_TEST("graphics-vnc-policy");
|
2009-05-21 14:22:51 +00:00
|
|
|
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST("graphics-vnc-sasl");
|
|
|
|
DO_TEST("graphics-vnc-tls");
|
2009-05-21 14:22:51 +00:00
|
|
|
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST("graphics-sdl");
|
|
|
|
DO_TEST("graphics-sdl-fullscreen");
|
|
|
|
DO_TEST("nographics-vga");
|
|
|
|
DO_TEST("input-usbmouse");
|
|
|
|
DO_TEST("input-usbtablet");
|
2009-05-21 14:22:51 +00:00
|
|
|
/* Can't rountrip xenner arch */
|
2010-09-10 02:32:50 +00:00
|
|
|
/*DO_TEST("input-xen");*/
|
|
|
|
DO_TEST("misc-acpi");
|
2012-08-02 10:18:16 +00:00
|
|
|
DO_TEST("misc-disable-s3");
|
|
|
|
DO_TEST("misc-disable-suspends");
|
|
|
|
DO_TEST("misc-enable-s4");
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST("misc-no-reboot");
|
|
|
|
DO_TEST("misc-uuid");
|
|
|
|
DO_TEST("net-user");
|
|
|
|
DO_TEST("net-virtio");
|
|
|
|
DO_TEST("net-eth");
|
|
|
|
DO_TEST("net-eth-ifname");
|
|
|
|
|
|
|
|
DO_TEST("serial-vc");
|
|
|
|
DO_TEST("serial-pty");
|
|
|
|
DO_TEST("serial-dev");
|
|
|
|
DO_TEST("serial-file");
|
|
|
|
DO_TEST("serial-unix");
|
|
|
|
DO_TEST("serial-tcp");
|
|
|
|
DO_TEST("serial-udp");
|
|
|
|
DO_TEST("serial-tcp-telnet");
|
|
|
|
DO_TEST("serial-many");
|
|
|
|
DO_TEST("parallel-tcp");
|
|
|
|
DO_TEST("console-compat");
|
|
|
|
DO_TEST("sound");
|
|
|
|
DO_TEST("watchdog");
|
|
|
|
|
|
|
|
DO_TEST("hostdev-usb-address");
|
|
|
|
|
|
|
|
DO_TEST("hostdev-pci-address");
|
|
|
|
|
2010-09-29 21:58:47 +00:00
|
|
|
DO_TEST("smp");
|
|
|
|
|
2012-10-17 12:55:18 +00:00
|
|
|
DO_TEST("hyperv");
|
|
|
|
|
2013-04-25 08:46:04 +00:00
|
|
|
DO_TEST("pseries-nvram");
|
|
|
|
|
2013-05-14 05:25:50 +00:00
|
|
|
DO_TEST("nosharepages");
|
|
|
|
|
2010-09-10 02:32:50 +00:00
|
|
|
DO_TEST_FULL("restore-v1", 0, "stdio");
|
|
|
|
DO_TEST_FULL("restore-v2", 0, "stdio");
|
|
|
|
DO_TEST_FULL("restore-v2", 0, "exec:cat");
|
|
|
|
DO_TEST_FULL("migrate", 0, "tcp:10.0.0.1:5000");
|
|
|
|
|
tests: silence qemuargv2xmltest noise
Before this patch, the testsuite was noisy:
TEST: qemuargv2xmltest
........................................ 40
................20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument '-unknown', adding to the qemu namespace
20:41:28.046: warning : qemuParseCommandLine:6565 : unknown QEMU argument 'parameter', adding to the qemu namespace
. 57 OK
PASS: qemuargv2xmltest
It's not a real failure (which is why the test was completing
successfully), so much as an intentional warning to the user that use
of the qemu namespace has the potential for undefined effects that
leaked through the default logging behavior. After this patch series,
all tests can access any logged data, and this particular test can
explicitly check for the presence or absence of the warning, such that
the test output becomes:
TEST: qemuargv2xmltest
........................................ 40
................. 57 OK
PASS: qemuargv2xmltest
* tests/testutils.h (virtTestLogContentAndReset): New prototype.
* tests/testutils.c (struct virtTestLogData): New struct.
(virtTestLogOutput, virtTestLogClose, virtTestLogContentAndReset):
New functions.
(virtTestMain): Always capture log data emitted during tests.
* tests/qemuargv2xmltest.c (testCompareXMLToArgvHelper, mymain):
Use flag to mark which tests expect noisy stderr.
(testCompareXMLToArgvFiles): Add parameter to test whether stderr
was appropriately silent.
2010-09-10 16:25:49 +00:00
|
|
|
DO_TEST_FULL("qemu-ns-no-env", 1, NULL);
|
2010-04-20 21:22:49 +00:00
|
|
|
|
2013-01-10 21:03:14 +00:00
|
|
|
virObjectUnref(driver.config);
|
2013-02-01 12:26:18 +00:00
|
|
|
virObjectUnref(driver.caps);
|
2013-03-31 18:03:42 +00:00
|
|
|
virObjectUnref(driver.xmlopt);
|
2009-05-21 14:22:51 +00:00
|
|
|
|
2012-03-22 11:33:35 +00:00
|
|
|
return ret==0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2009-05-21 14:22:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VIRT_TEST_MAIN(mymain)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2011-07-28 15:48:12 +00:00
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
return EXIT_AM_SKIP;
|
|
|
|
}
|
2009-05-21 14:22:51 +00:00
|
|
|
|
|
|
|
#endif /* WITH_QEMU */
|