qemuxml2xmltest.c 18.6 KB
Newer Older
1
#include <config.h>
2

3
#include <stdio.h>
4 5
#include <stdlib.h>
#include <unistd.h>
6 7 8 9 10
#include <string.h>

#include <sys/types.h>
#include <fcntl.h>

11 12
#include "testutils.h"

13 14
#ifdef WITH_QEMU

15 16
# include "internal.h"
# include "qemu/qemu_conf.h"
M
Matthias Bolte 已提交
17
# include "qemu/qemu_domain.h"
18
# include "testutilsqemu.h"
19
# include "virstring.h"
20

21 22
# define VIR_FROM_THIS VIR_FROM_NONE

23
static virQEMUDriver driver;
24

25 26 27 28 29 30 31 32 33 34
enum {
    WHEN_INACTIVE = 1,
    WHEN_ACTIVE = 2,
    WHEN_BOTH = 3,
};

struct testInfo {
    char *inName;
    char *outActiveName;
    char *outInactiveName;
35 36

    virQEMUCapsPtr qemuCaps;
37 38 39 40 41 42 43
};

static int
testXML2XMLActive(const void *opaque)
{
    const struct testInfo *info = opaque;

44 45
    return testCompareDomXML2XMLFiles(driver.caps, driver.xmlopt,
                                      info->inName, info->outActiveName, true);
46 47
}

48

49
static int
50
testXML2XMLInactive(const void *opaque)
51
{
52 53
    const struct testInfo *info = opaque;

54 55
    return testCompareDomXML2XMLFiles(driver.caps, driver.xmlopt, info->inName,
                                      info->outInactiveName, false);
56
}
57

58

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
static const char testStatusXMLPrefix[] =
"<domstatus state='running' reason='booted' pid='3803518'>\n"
"  <taint flag='high-privileges'/>\n"
"  <monitor path='/var/lib/libvirt/qemu/test.monitor' json='1' type='unix'/>\n"
"  <vcpus>\n"
"    <vcpu pid='3803519'/>\n"
"  </vcpus>\n"
"  <qemuCaps>\n"
"    <flag name='vnet-hdr'/>\n"
"    <flag name='qxl.vgamem_mb'/>\n"
"    <flag name='qxl-vga.vgamem_mb'/>\n"
"    <flag name='pc-dimm'/>\n"
"  </qemuCaps>\n"
"  <devices>\n"
"    <device alias='balloon0'/>\n"
"    <device alias='video0'/>\n"
"    <device alias='serial0'/>\n"
"    <device alias='net0'/>\n"
"    <device alias='usb'/>\n"
78 79
"  </devices>\n"
"  <numad nodeset='0-2'/>\n";
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

static const char testStatusXMLSuffix[] =
"</domstatus>\n";


static int
testCompareStatusXMLToXMLFiles(const void *opaque)
{
    const struct testInfo *data = opaque;
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    xmlDocPtr xml = NULL;
    virDomainObjPtr obj = NULL;
    char *expect = NULL;
    char *actual = NULL;
    char *source = NULL;
95
    char *inFile = NULL, *outActiveFile = NULL;
96 97 98
    int ret = -1;
    int keepBlanksDefault = xmlKeepBlanksDefault(0);

99 100 101 102 103
    if (virtTestLoadFile(data->inName, &inFile) < 0)
        goto cleanup;
    if (virtTestLoadFile(data->outActiveName, &outActiveFile) < 0)
        goto cleanup;

104 105 106
    /* construct faked source status XML */
    virBufferAdd(&buf, testStatusXMLPrefix, -1);
    virBufferAdjustIndent(&buf, 2);
107
    virBufferAddStr(&buf, inFile);
108 109 110 111
    virBufferAdjustIndent(&buf, -2);
    virBufferAdd(&buf, testStatusXMLSuffix, -1);

    if (!(source = virBufferContentAndReset(&buf))) {
112
        VIR_TEST_DEBUG("Failed to create the source XML");
113 114 115 116 117 118
        goto cleanup;
    }

    /* construct the expect string */
    virBufferAdd(&buf, testStatusXMLPrefix, -1);
    virBufferAdjustIndent(&buf, 2);
119
    virBufferAddStr(&buf, outActiveFile);
120 121 122 123
    virBufferAdjustIndent(&buf, -2);
    virBufferAdd(&buf, testStatusXMLSuffix, -1);

    if (!(expect = virBufferContentAndReset(&buf))) {
124
        VIR_TEST_DEBUG("Failed to create the expect XML");
125 126 127 128 129 130 131 132 133
        goto cleanup;
    }

    /* parse the fake source status XML */
    if (!(xml = virXMLParseString(source, "(domain_status_test_XML)")) ||
        !(obj = virDomainObjParseNode(xml, xmlDocGetRootElement(xml),
                                      driver.caps, driver.xmlopt,
                                      VIR_DOMAIN_DEF_PARSE_STATUS |
                                      VIR_DOMAIN_DEF_PARSE_ACTUAL_NET |
134
                                      VIR_DOMAIN_DEF_PARSE_PCI_ORIG_STATES))) {
135
        VIR_TEST_DEBUG("Failed to parse domain status XML:\n%s", source);
136 137 138 139
        goto cleanup;
    }

    /* format it back */
140
    if (!(actual = virDomainObjFormat(driver.xmlopt, obj, NULL,
141
                                      VIR_DOMAIN_DEF_FORMAT_SECURE))) {
142
        VIR_TEST_DEBUG("Failed to format domain status XML");
143 144 145 146
        goto cleanup;
    }

    if (STRNEQ(actual, expect)) {
147 148 149 150 151
        /* For status test we don't want to regenerate output to not
         * add the status data.*/
        virtTestDifferenceFullNoRegenerate(stderr,
                                           expect, data->outActiveName,
                                           actual, data->inName);
152 153 154 155 156 157 158 159 160 161 162 163
        goto cleanup;
    }

    ret = 0;

 cleanup:
    xmlKeepBlanksDefault(keepBlanksDefault);
    xmlFreeDoc(xml);
    virObjectUnref(obj);
    VIR_FREE(expect);
    VIR_FREE(actual);
    VIR_FREE(source);
164 165
    VIR_FREE(inFile);
    VIR_FREE(outActiveFile);
166 167 168 169
    return ret;
}


170 171 172 173 174 175
static void
testInfoFree(struct testInfo *info)
{
    VIR_FREE(info->inName);
    VIR_FREE(info->outActiveName);
    VIR_FREE(info->outInactiveName);
176 177

    virObjectUnref(info->qemuCaps);
178 179 180 181 182 183 184 185
}


static int
testInfoSet(struct testInfo *info,
            const char *name,
            int when)
{
186 187 188 189 190 191 192
    if (!(info->qemuCaps = virQEMUCapsNew()))
        goto error;

    if (qemuTestCapsCacheInsert(driver.qemuCapsCache, name,
                                info->qemuCaps) < 0)
        goto error;

193 194 195 196 197
    if (virAsprintf(&info->inName, "%s/qemuxml2argvdata/qemuxml2argv-%s.xml",
                    abs_srcdir, name) < 0)
        goto error;

    if (when & WHEN_INACTIVE) {
198 199 200 201
        if (virAsprintf(&info->outInactiveName,
                        "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s-inactive.xml",
                        abs_srcdir, name) < 0)
            goto error;
202

203 204
        if (!virFileExists(info->outInactiveName)) {
            VIR_FREE(info->outInactiveName);
205

206 207 208
            if (virAsprintf(&info->outInactiveName,
                            "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s.xml",
                            abs_srcdir, name) < 0)
209 210
                goto error;
        }
211
    }
212

213
    if (when & WHEN_ACTIVE) {
214 215 216 217
        if (virAsprintf(&info->outActiveName,
                        "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s-active.xml",
                        abs_srcdir, name) < 0)
            goto error;
218

219 220
        if (!virFileExists(info->outActiveName)) {
            VIR_FREE(info->outActiveName);
221

222 223 224
            if (virAsprintf(&info->outActiveName,
                            "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s.xml",
                            abs_srcdir, name) < 0)
225 226
                goto error;
        }
227
    }
228

229
    return 0;
230

231 232 233
 error:
    testInfoFree(info);
    return -1;
234 235 236
}


237
static int
E
Eric Blake 已提交
238
mymain(void)
239 240
{
    int ret = 0;
241
    struct testInfo info;
242

243
    if (qemuTestDriverInit(&driver) < 0)
244
        return EXIT_FAILURE;
245

246 247
    /* TODO: test with format probing disabled too */
    driver.config->allowDiskFormatProbing = true;
248

249
# define DO_TEST_FULL(name, when)                                              \
250
    do {                                                                       \
251
        if (testInfoSet(&info, name, when) < 0) {                             \
252
            VIR_TEST_DEBUG("Failed to generate test data for '%s'", name);    \
253 254 255 256 257 258 259 260 261 262 263 264
            return -1;                                                         \
        }                                                                      \
                                                                               \
        if (info.outInactiveName) {                                            \
            if (virtTestRun("QEMU XML-2-XML-inactive " name,                   \
                            testXML2XMLInactive, &info) < 0)                   \
                ret = -1;                                                      \
        }                                                                      \
                                                                               \
        if (info.outActiveName) {                                              \
            if (virtTestRun("QEMU XML-2-XML-active " name,                     \
                            testXML2XMLActive, &info) < 0)                     \
265 266 267 268
                ret = -1;                                                      \
                                                                               \
            if (virtTestRun("QEMU XML-2-XML-status " name,                     \
                            testCompareStatusXMLToXMLFiles, &info) < 0)        \
269 270 271
                ret = -1;                                                      \
        }                                                                      \
        testInfoFree(&info);                                                   \
272 273
    } while (0)

274
# define DO_TEST(name) \
275
    DO_TEST_FULL(name, WHEN_BOTH)
276 277 278 279 280

    /* Unset or set all envvars here that are copied in qemudBuildCommandLine
     * using ADD_ENV_COPY, otherwise these tests may fail due to unexpected
     * values for these envvars */
    setenv("PATH", "/bin", 1);
281 282

    DO_TEST("minimal");
283 284
    DO_TEST("machine-core-on");
    DO_TEST("machine-core-off");
285 286
    DO_TEST("default-kvm-host-arch");
    DO_TEST("default-qemu-host-arch");
287 288 289
    DO_TEST("boot-cdrom");
    DO_TEST("boot-network");
    DO_TEST("boot-floppy");
290
    DO_TEST("boot-multi");
291
    DO_TEST("boot-menu-enable-with-timeout");
292
    DO_TEST("boot-menu-disable");
293
    DO_TEST("boot-menu-disable-with-timeout");
294
    DO_TEST("boot-order");
295 296 297 298

    DO_TEST("reboot-timeout-enabled");
    DO_TEST("reboot-timeout-disabled");

299 300
    DO_TEST("clock-utc");
    DO_TEST("clock-localtime");
301
    DO_TEST("cpu-empty");
302 303
    DO_TEST("cpu-kvmclock");
    DO_TEST("cpu-host-kvmclock");
304
    DO_TEST("cpu-host-passthrough-features");
305
    DO_TEST("cpu-host-model-features");
306
    DO_TEST("clock-catchup");
307
    DO_TEST("kvmclock");
308
    DO_TEST("clock-timer-hyperv-rtc");
309 310 311 312 313

    DO_TEST("cpu-eoi-disabled");
    DO_TEST("cpu-eoi-enabled");
    DO_TEST("eoi-disabled");
    DO_TEST("eoi-enabled");
314 315
    DO_TEST("pv-spinlock-disabled");
    DO_TEST("pv-spinlock-enabled");
316

317
    DO_TEST("hyperv");
318
    DO_TEST("hyperv-off");
319
    DO_TEST("hyperv-panic");
320

321 322 323
    DO_TEST("kvm-features");
    DO_TEST("kvm-features-off");

324
    DO_TEST("pmu-feature");
325 326
    DO_TEST("pmu-feature-off");

327
    DO_TEST("hugepages");
328
    DO_TEST("hugepages-pages");
329 330
    DO_TEST("hugepages-pages2");
    DO_TEST("hugepages-pages3");
331
    DO_TEST("hugepages-shared");
332
    DO_TEST("nosharepages");
333 334 335
    DO_TEST("restore-v2");
    DO_TEST("migrate");
    DO_TEST("qemu-ns-no-env");
E
Eric Blake 已提交
336
    DO_TEST("disk-aio");
337
    DO_TEST("disk-cdrom");
338
    DO_TEST("disk-cdrom-empty");
339 340
    DO_TEST("disk-floppy");
    DO_TEST("disk-many");
341
    DO_TEST("disk-xenvbd");
342
    DO_TEST("disk-usb");
343
    DO_TEST("disk-virtio");
344
    DO_TEST("floppy-drive-fat");
345 346 347 348 349
    DO_TEST("disk-drive-boot-disk");
    DO_TEST("disk-drive-boot-cdrom");
    DO_TEST("disk-drive-error-policy-stop");
    DO_TEST("disk-drive-error-policy-enospace");
    DO_TEST("disk-drive-error-policy-wreport-rignore");
350
    DO_TEST("disk-drive-fat");
351
    DO_TEST("disk-drive-fmt-qcow");
352
    DO_TEST("disk-drive-copy-on-read");
353 354 355 356 357
    DO_TEST("disk-drive-cache-v2-wt");
    DO_TEST("disk-drive-cache-v2-wb");
    DO_TEST("disk-drive-cache-v2-none");
    DO_TEST("disk-drive-cache-directsync");
    DO_TEST("disk-drive-cache-unsafe");
358
    DO_TEST("disk-drive-network-nbd");
P
Paolo Bonzini 已提交
359
    DO_TEST("disk-drive-network-nbd-export");
P
Paolo Bonzini 已提交
360 361
    DO_TEST("disk-drive-network-nbd-ipv6");
    DO_TEST("disk-drive-network-nbd-ipv6-export");
362
    DO_TEST("disk-drive-network-nbd-unix");
363
    DO_TEST("disk-drive-network-iscsi");
364
    DO_TEST("disk-drive-network-iscsi-auth");
365 366 367 368 369 370
    DO_TEST("disk-drive-network-gluster");
    DO_TEST("disk-drive-network-rbd");
    DO_TEST("disk-drive-network-rbd-auth");
    DO_TEST("disk-drive-network-rbd-ipv6");
    DO_TEST("disk-drive-network-rbd-ceph-env");
    DO_TEST("disk-drive-network-sheepdog");
371
    DO_TEST("disk-scsi-device");
372 373
    DO_TEST("disk-scsi-vscsi");
    DO_TEST("disk-scsi-virtio-scsi");
374
    DO_TEST("disk-virtio-scsi-num_queues");
375 376
    DO_TEST("disk-virtio-scsi-cmd_per_lun");
    DO_TEST("disk-virtio-scsi-max_sectors");
377
    DO_TEST("disk-virtio-scsi-ioeventfd");
378
    DO_TEST("disk-scsi-megasas");
379 380 381 382
    DO_TEST("disk-mirror-old");
    DO_TEST_FULL("disk-mirror", WHEN_ACTIVE);
    DO_TEST_FULL("disk-mirror", WHEN_INACTIVE);
    DO_TEST_FULL("disk-active-commit", WHEN_ACTIVE);
383
    DO_TEST("graphics-listen-network");
384
    DO_TEST("graphics-vnc");
385
    DO_TEST("graphics-vnc-websocket");
386 387
    DO_TEST("graphics-vnc-sasl");
    DO_TEST("graphics-vnc-tls");
388
    DO_TEST("graphics-sdl");
389
    DO_TEST("graphics-sdl-fullscreen");
390
    DO_TEST("graphics-spice");
391
    DO_TEST("graphics-spice-compression");
392
    DO_TEST("graphics-spice-qxl-vga");
393
    DO_TEST("nographics-vga");
394 395 396
    DO_TEST("input-usbmouse");
    DO_TEST("input-usbtablet");
    DO_TEST("misc-acpi");
397 398 399
    DO_TEST("misc-disable-s3");
    DO_TEST("misc-disable-suspends");
    DO_TEST("misc-enable-s4");
400
    DO_TEST("misc-no-reboot");
401
    DO_TEST("misc-uuid");
M
Michele Paolino 已提交
402
    DO_TEST("net-vhostuser");
403
    DO_TEST("net-user");
404
    DO_TEST("net-virtio");
405
    DO_TEST("net-virtio-device");
406
    DO_TEST("net-virtio-disable-offloads");
407 408
    DO_TEST("net-eth");
    DO_TEST("net-eth-ifname");
409
    DO_TEST("net-virtio-network-portgroup");
410
    DO_TEST("net-hostdev");
411
    DO_TEST("net-hostdev-vfio");
412
    DO_TEST("net-midonet");
413
    DO_TEST("net-openvswitch");
414
    DO_TEST("sound");
415
    DO_TEST("sound-device");
416
    DO_TEST("watchdog");
417
    DO_TEST("net-bandwidth");
418
    DO_TEST("net-bandwidth2");
419 420 421 422 423 424 425 426 427 428

    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");
429 430
    DO_TEST("serial-spiceport");
    DO_TEST("serial-spiceport-nospice");
431 432
    DO_TEST("parallel-tcp");
    DO_TEST("console-compat");
433
    DO_TEST("console-compat2");
434
    DO_TEST("console-virtio-many");
435
    DO_TEST("channel-guestfwd");
436
    DO_TEST("channel-virtio");
437
    DO_TEST("channel-virtio-state");
438

439
    DO_TEST("hostdev-usb-address");
440
    DO_TEST("hostdev-pci-address");
441
    DO_TEST("hostdev-vfio");
442
    DO_TEST("pci-rom");
M
Michal Privoznik 已提交
443
    DO_TEST("pci-serial-dev-chardev");
444

445
    DO_TEST("encrypted-disk");
446 447
    DO_TEST("memtune");
    DO_TEST("memtune-unlimited");
448
    DO_TEST("blkiotune");
449
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
450
    DO_TEST("cputune");
451
    DO_TEST("cputune-zero-shares");
452
    DO_TEST("cputune-iothreadsched");
453
    DO_TEST("cputune-iothreadsched-zeropriority");
454 455
    DO_TEST("cputune-numatune");
    DO_TEST("vcpu-placement-static");
456

457
    DO_TEST("smp");
J
John Ferlan 已提交
458
    DO_TEST("iothreads");
459 460
    DO_TEST("iothreads-ids");
    DO_TEST("iothreads-ids-partial");
461
    DO_TEST("cputune-iothreads");
462
    DO_TEST("iothreads-disk");
463
    DO_TEST("iothreads-disk-virtio-ccw");
464
    DO_TEST("lease");
465
    DO_TEST("event_idx");
466
    DO_TEST("vhost_queues");
467
    DO_TEST("interface-driver");
468
    DO_TEST("interface-server");
469
    DO_TEST("virtio-lun");
470

471
    DO_TEST("usb-redir");
472 473
    DO_TEST("usb-redir-filter");
    DO_TEST("usb-redir-filter-version");
L
Lei Li 已提交
474
    DO_TEST("blkdeviotune");
475
    DO_TEST("controller-usb-order");
476

477 478 479 480
    DO_TEST_FULL("seclabel-dynamic-baselabel", WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-override", WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-labelskip", WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-relabel", WHEN_INACTIVE);
481
    DO_TEST("seclabel-static");
482 483
    DO_TEST_FULL("seclabel-static-labelskip", WHEN_ACTIVE);
    DO_TEST("seclabel-none");
484
    DO_TEST("seclabel-dac-none");
485
    DO_TEST("seclabel-dynamic-none");
486
    DO_TEST("seclabel-device-multiple");
487
    DO_TEST_FULL("seclabel-dynamic-none-relabel", WHEN_INACTIVE);
488
    DO_TEST("numad-static-vcpu-no-numatune");
O
Osier Yang 已提交
489
    DO_TEST("disk-scsi-lun-passthrough-sgio");
490

491
    DO_TEST("disk-scsi-disk-vpd");
492
    DO_TEST("disk-source-pool");
493
    DO_TEST("disk-source-pool-mode");
494

495
    DO_TEST("disk-drive-discard");
O
Osier Yang 已提交
496

497 498 499
    DO_TEST("virtio-rng-random");
    DO_TEST("virtio-rng-egd");

500
    DO_TEST("pseries-nvram");
501 502
    DO_TEST("pseries-panic-missing");
    DO_TEST("pseries-panic-no-address");
503

504
    /* These tests generate different XML */
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
    DO_TEST("balloon-device-auto");
    DO_TEST("balloon-device-period");
    DO_TEST("channel-virtio-auto");
    DO_TEST("console-compat-auto");
    DO_TEST("disk-scsi-device-auto");
    DO_TEST("console-virtio");
    DO_TEST("serial-target-port-auto");
    DO_TEST("graphics-listen-network2");
    DO_TEST("graphics-spice-timeout");
    DO_TEST("numad-auto-vcpu-no-numatune");
    DO_TEST("numad-auto-memory-vcpu-no-cpuset-and-placement");
    DO_TEST("numad-auto-memory-vcpu-cpuset");
    DO_TEST("usb-ich9-ehci-addr");

    DO_TEST("metadata");
    DO_TEST("metadata-duplicate");
521

522
    DO_TEST("tpm-passthrough");
523
    DO_TEST("pci-bridge");
524 525 526 527 528 529 530 531
    DO_TEST("pci-bridge-many-disks");
    DO_TEST("pci-autoadd-addr");
    DO_TEST("pci-autoadd-idx");
    DO_TEST("pcie-root");
    DO_TEST("q35");
    DO_TEST("q35-usb2");
    DO_TEST("q35-usb2-multi");
    DO_TEST("q35-usb2-reorder");
532
    DO_TEST("pcie-root-port");
533
    DO_TEST("pcie-root-port-too-many");
534
    DO_TEST("pcie-switch-upstream-port");
535
    DO_TEST("pcie-switch-downstream-port");
536

537 538
    DO_TEST("hostdev-scsi-lsi");
    DO_TEST("hostdev-scsi-virtio-scsi");
O
Osier Yang 已提交
539
    DO_TEST("hostdev-scsi-readonly");
H
Han Cheng 已提交
540

541
    DO_TEST("disk-copy_on_read");
542
    DO_TEST("hostdev-scsi-shareable");
O
Osier Yang 已提交
543
    DO_TEST("hostdev-scsi-sgio");
544
    DO_TEST("hostdev-scsi-rawio");
545

546
    DO_TEST("hostdev-scsi-autogen-address");
547
    DO_TEST("hostdev-scsi-large-unit");
548

J
John Ferlan 已提交
549 550 551 552 553
    DO_TEST("hostdev-scsi-lsi-iscsi");
    DO_TEST("hostdev-scsi-lsi-iscsi-auth");
    DO_TEST("hostdev-scsi-virtio-iscsi");
    DO_TEST("hostdev-scsi-virtio-iscsi-auth");

554
    DO_TEST("s390-defaultconsole");
555

556
    DO_TEST("pcihole64");
557
    DO_TEST("pcihole64-gib");
558 559 560
    DO_TEST("pcihole64-none");
    DO_TEST("pcihole64-q35");

561
    DO_TEST("panic");
562 563
    DO_TEST("panic-isa");
    DO_TEST("panic-pseries");
D
Dmitry Andreev 已提交
564
    DO_TEST("panic-double");
565
    DO_TEST("panic-no-address");
H
Hu Tao 已提交
566

567
    DO_TEST("disk-backing-chains");
568

J
Ján Tomko 已提交
569 570
    DO_TEST("chardev-label");

571 572 573 574
    DO_TEST("cpu-numa1");
    DO_TEST("cpu-numa2");
    DO_TEST("cpu-numa-no-memory-element");
    DO_TEST("cpu-numa-disordered");
575
    DO_TEST("cpu-numa-disjoint");
576
    DO_TEST("cpu-numa-memshared");
577

578 579
    DO_TEST("numatune-auto-prefer");
    DO_TEST("numatune-memnode");
580
    DO_TEST("numatune-memnode-no-memory");
581

582
    DO_TEST("bios-nvram");
583
    DO_TEST("bios-nvram-os-interleave");
584

585
    DO_TEST("tap-vhost");
586
    DO_TEST("tap-vhost-incorrect");
587
    DO_TEST("shmem");
588
    DO_TEST("smbios");
589
    DO_TEST("smbios-multiple-type2");
590
    DO_TEST("aarch64-aavmf-virtio-mmio");
591

592 593 594
    DO_TEST("aarch64-gic");
    DO_TEST("aarch64-gicv3");

595 596
    DO_TEST("memory-hotplug");
    DO_TEST("memory-hotplug-nonuma");
597
    DO_TEST("memory-hotplug-dimm");
598
    DO_TEST("net-udp");
599

M
Marc-André Lureau 已提交
600
    DO_TEST("video-virtio-gpu-device");
601
    DO_TEST("video-virtio-gpu-virgl");
602
    DO_TEST("virtio-input");
603
    DO_TEST("virtio-input-passthrough");
M
Marc-André Lureau 已提交
604

605
    qemuTestDriverFree(&driver);
606

607
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
608 609
}

610 611
VIRT_TEST_MAIN(mymain)

612 613
#else

614 615 616 617 618
int
main(void)
{
    return EXIT_AM_SKIP;
}
619 620

#endif /* WITH_QEMU */