qemuxml2xmltest.c 19.8 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 35 36 37 38 39 40 41
enum {
    WHEN_INACTIVE = 1,
    WHEN_ACTIVE = 2,
    WHEN_BOTH = 3,
};

struct testInfo {
    char *inName;
    char *inFile;

    char *outActiveName;
    char *outActiveFile;

    char *outInactiveName;
    char *outInactiveFile;
};

42
static int
43 44 45 46 47
testXML2XMLHelper(const char *inxml,
                  const char *inXmlData,
                  const char *outxml,
                  const char *outXmlData,
                  bool live)
48
{
49 50
    char *actual = NULL;
    int ret = -1;
51
    virDomainDefPtr def = NULL;
52 53 54 55
    unsigned int parse_flags = live ? 0 : VIR_DOMAIN_DEF_PARSE_INACTIVE;
    unsigned int format_flags = VIR_DOMAIN_DEF_FORMAT_SECURE;
    if (!live)
        format_flags |= VIR_DOMAIN_DEF_FORMAT_INACTIVE;
56

57
    if (!(def = virDomainDefParseString(inXmlData, driver.caps, driver.xmlopt,
58
                                        parse_flags)))
59 60
        goto fail;

61
    if (!virDomainDefCheckABIStability(def, def)) {
62
        VIR_TEST_DEBUG("ABI stability check failed on %s", inxml);
63 64 65
        goto fail;
    }

66
    if (!(actual = virDomainDefFormat(def, format_flags)))
67 68
        goto fail;

69
    if (STRNEQ(outXmlData, actual)) {
70
        virtTestDifferenceFull(stderr, outXmlData, outxml, actual, inxml);
71 72 73 74
        goto fail;
    }

    ret = 0;
75

76
 fail:
77
    VIR_FREE(actual);
78
    virDomainDefFree(def);
79 80 81
    return ret;
}

82

83 84 85 86 87 88 89 90 91 92 93 94
static int
testXML2XMLActive(const void *opaque)
{
    const struct testInfo *info = opaque;

    return testXML2XMLHelper(info->inName,
                             info->inFile,
                             info->outActiveName,
                             info->outActiveFile,
                             true);
}

95

96
static int
97
testXML2XMLInactive(const void *opaque)
98
{
99 100 101 102 103 104 105 106
    const struct testInfo *info = opaque;

    return testXML2XMLHelper(info->inName,
                             info->inFile,
                             info->outInactiveName,
                             info->outInactiveFile,
                             false);
}
107

108

109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
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"
128 129
"  </devices>\n"
"  <numad nodeset='0-2'/>\n";
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155

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;
    int ret = -1;
    int keepBlanksDefault = xmlKeepBlanksDefault(0);

    /* construct faked source status XML */
    virBufferAdd(&buf, testStatusXMLPrefix, -1);
    virBufferAdjustIndent(&buf, 2);
    virBufferAddStr(&buf, data->inFile);
    virBufferAdjustIndent(&buf, -2);
    virBufferAdd(&buf, testStatusXMLSuffix, -1);

    if (!(source = virBufferContentAndReset(&buf))) {
156
        VIR_TEST_DEBUG("Failed to create the source XML");
157 158 159 160 161 162 163 164 165 166 167
        goto cleanup;
    }

    /* construct the expect string */
    virBufferAdd(&buf, testStatusXMLPrefix, -1);
    virBufferAdjustIndent(&buf, 2);
    virBufferAddStr(&buf, data->outActiveFile);
    virBufferAdjustIndent(&buf, -2);
    virBufferAdd(&buf, testStatusXMLSuffix, -1);

    if (!(expect = virBufferContentAndReset(&buf))) {
168
        VIR_TEST_DEBUG("Failed to create the expect XML");
169 170 171 172 173 174 175 176 177
        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 |
178
                                      VIR_DOMAIN_DEF_PARSE_PCI_ORIG_STATES))) {
179
        VIR_TEST_DEBUG("Failed to parse domain status XML:\n%s", source);
180 181 182 183 184 185
        goto cleanup;
    }

    /* format it back */
    if (!(actual = virDomainObjFormat(driver.xmlopt, obj,
                                      VIR_DOMAIN_DEF_FORMAT_SECURE))) {
186
        VIR_TEST_DEBUG("Failed to format domain status XML");
187 188 189 190
        goto cleanup;
    }

    if (STRNEQ(actual, expect)) {
191 192 193 194 195
        /* For status test we don't want to regenerate output to not
         * add the status data.*/
        virtTestDifferenceFullNoRegenerate(stderr,
                                           expect, data->outActiveName,
                                           actual, data->inName);
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
        goto cleanup;
    }

    ret = 0;

 cleanup:
    xmlKeepBlanksDefault(keepBlanksDefault);
    xmlFreeDoc(xml);
    virObjectUnref(obj);
    VIR_FREE(expect);
    VIR_FREE(actual);
    VIR_FREE(source);
    return ret;
}


212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
static void
testInfoFree(struct testInfo *info)
{
    VIR_FREE(info->inName);
    VIR_FREE(info->inFile);

    VIR_FREE(info->outActiveName);
    VIR_FREE(info->outActiveFile);

    VIR_FREE(info->outInactiveName);
    VIR_FREE(info->outInactiveFile);
}


static int
testInfoSet(struct testInfo *info,
            const char *name,
            bool different,
            int when)
{
    if (virAsprintf(&info->inName, "%s/qemuxml2argvdata/qemuxml2argv-%s.xml",
                    abs_srcdir, name) < 0)
        goto error;

    if (virtTestLoadFile(info->inName, &info->inFile) < 0)
        goto error;

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

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

                if (virAsprintf(&info->outInactiveName,
                                "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s.xml",
                                abs_srcdir, name) < 0)
                    goto error;
            }
        } else {
            if (VIR_STRDUP(info->outInactiveName, info->inName) < 0)
                goto error;
        }

        if (virtTestLoadFile(info->outInactiveName, &info->outInactiveFile) < 0)
            goto error;
261
    }
262

263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
    if (when & WHEN_ACTIVE) {
        if (different) {
            if (virAsprintf(&info->outActiveName,
                           "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s-active.xml",
                           abs_srcdir, name) < 0)
                goto error;

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

                if (virAsprintf(&info->outActiveName,
                                "%s/qemuxml2xmloutdata/qemuxml2xmlout-%s.xml",
                                abs_srcdir, name) < 0)
                    goto error;
            }
        } else {
            if (VIR_STRDUP(info->outActiveName, info->inName) < 0)
                goto error;
        }

        if (virtTestLoadFile(info->outActiveName, &info->outActiveFile) < 0)
            goto error;
285
    }
286

287
    return 0;
288

289 290 291
 error:
    testInfoFree(info);
    return -1;
292 293 294
}


295
static int
E
Eric Blake 已提交
296
mymain(void)
297 298
{
    int ret = 0;
299
    struct testInfo info;
300

301
    if (qemuTestDriverInit(&driver) < 0)
302
        return EXIT_FAILURE;
303

304 305
    /* TODO: test with format probing disabled too */
    driver.config->allowDiskFormatProbing = true;
306

307 308 309
# define DO_TEST_FULL(name, is_different, when)                                \
    do {                                                                       \
        if (testInfoSet(&info, name, is_different, when) < 0) {                \
310
            VIR_TEST_DEBUG("Failed to generate test data for '%s'", name);    \
311 312 313 314 315 316 317 318 319 320 321 322
            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)                     \
323 324 325 326
                ret = -1;                                                      \
                                                                               \
            if (virtTestRun("QEMU XML-2-XML-status " name,                     \
                            testCompareStatusXMLToXMLFiles, &info) < 0)        \
327 328 329
                ret = -1;                                                      \
        }                                                                      \
        testInfoFree(&info);                                                   \
330 331
    } while (0)

332
# define DO_TEST(name) \
333
    DO_TEST_FULL(name, false, WHEN_BOTH)
334 335

# define DO_TEST_DIFFERENT(name) \
336
    DO_TEST_FULL(name, true, WHEN_BOTH)
337 338 339 340 341

    /* 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);
342 343

    DO_TEST("minimal");
344 345
    DO_TEST("machine-core-on");
    DO_TEST("machine-core-off");
346 347
    DO_TEST_DIFFERENT("default-kvm-host-arch");
    DO_TEST_DIFFERENT("default-qemu-host-arch");
348 349 350
    DO_TEST("boot-cdrom");
    DO_TEST("boot-network");
    DO_TEST("boot-floppy");
351
    DO_TEST("boot-multi");
352
    DO_TEST("boot-menu-enable-with-timeout");
353
    DO_TEST("boot-menu-disable");
354
    DO_TEST_DIFFERENT("boot-menu-disable-with-timeout");
355
    DO_TEST("boot-order");
356 357 358 359

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

360 361
    DO_TEST("clock-utc");
    DO_TEST("clock-localtime");
362
    DO_TEST_DIFFERENT("cpu-empty");
363 364
    DO_TEST("cpu-kvmclock");
    DO_TEST("cpu-host-kvmclock");
365
    DO_TEST("cpu-host-passthrough-features");
366
    DO_TEST("cpu-host-model-features");
367
    DO_TEST("clock-catchup");
368
    DO_TEST("kvmclock");
369
    DO_TEST("clock-timer-hyperv-rtc");
370 371 372 373 374

    DO_TEST("cpu-eoi-disabled");
    DO_TEST("cpu-eoi-enabled");
    DO_TEST("eoi-disabled");
    DO_TEST("eoi-enabled");
375 376
    DO_TEST("pv-spinlock-disabled");
    DO_TEST("pv-spinlock-enabled");
377

378
    DO_TEST("hyperv");
379
    DO_TEST("hyperv-off");
380
    DO_TEST("hyperv-panic");
381

382 383 384
    DO_TEST("kvm-features");
    DO_TEST("kvm-features-off");

385 386 387
    DO_TEST_DIFFERENT("pmu-feature");
    DO_TEST("pmu-feature-off");

388
    DO_TEST("hugepages");
389
    DO_TEST("hugepages-pages");
390 391
    DO_TEST("hugepages-pages2");
    DO_TEST("hugepages-pages3");
392
    DO_TEST("hugepages-shared");
393
    DO_TEST("nosharepages");
E
Eric Blake 已提交
394
    DO_TEST("disk-aio");
395 396 397
    DO_TEST("disk-cdrom");
    DO_TEST("disk-floppy");
    DO_TEST("disk-many");
398
    DO_TEST("disk-xenvbd");
399
    DO_TEST("disk-usb");
400
    DO_TEST("disk-virtio");
401 402
    DO_TEST("floppy-drive-fat");
    DO_TEST("disk-drive-fat");
403
    DO_TEST("disk-drive-fmt-qcow");
404
    DO_TEST("disk-drive-copy-on-read");
405
    DO_TEST("disk-drive-network-nbd");
P
Paolo Bonzini 已提交
406
    DO_TEST("disk-drive-network-nbd-export");
P
Paolo Bonzini 已提交
407 408
    DO_TEST("disk-drive-network-nbd-ipv6");
    DO_TEST("disk-drive-network-nbd-ipv6-export");
409
    DO_TEST("disk-drive-network-nbd-unix");
410
    DO_TEST("disk-drive-network-iscsi");
411
    DO_TEST("disk-drive-network-iscsi-auth");
412
    DO_TEST("disk-scsi-device");
413 414
    DO_TEST("disk-scsi-vscsi");
    DO_TEST("disk-scsi-virtio-scsi");
415
    DO_TEST("disk-virtio-scsi-num_queues");
416 417
    DO_TEST("disk-virtio-scsi-cmd_per_lun");
    DO_TEST("disk-virtio-scsi-max_sectors");
418
    DO_TEST("disk-virtio-scsi-ioeventfd");
419
    DO_TEST("disk-scsi-megasas");
E
Eric Blake 已提交
420
    DO_TEST_DIFFERENT("disk-mirror-old");
421 422
    DO_TEST_FULL("disk-mirror", false, WHEN_ACTIVE);
    DO_TEST_FULL("disk-mirror", true, WHEN_INACTIVE);
E
Eric Blake 已提交
423
    DO_TEST_FULL("disk-active-commit", false, WHEN_ACTIVE);
424
    DO_TEST("graphics-listen-network");
425
    DO_TEST("graphics-vnc");
426
    DO_TEST("graphics-vnc-websocket");
427 428
    DO_TEST("graphics-vnc-sasl");
    DO_TEST("graphics-vnc-tls");
429
    DO_TEST("graphics-sdl");
430
    DO_TEST("graphics-sdl-fullscreen");
431
    DO_TEST("graphics-spice");
432
    DO_TEST("graphics-spice-compression");
433
    DO_TEST("graphics-spice-qxl-vga");
434 435 436
    DO_TEST("input-usbmouse");
    DO_TEST("input-usbtablet");
    DO_TEST("misc-acpi");
437 438 439
    DO_TEST("misc-disable-s3");
    DO_TEST("misc-disable-suspends");
    DO_TEST("misc-enable-s4");
440
    DO_TEST("misc-no-reboot");
M
Michele Paolino 已提交
441
    DO_TEST("net-vhostuser");
442
    DO_TEST("net-user");
443
    DO_TEST("net-virtio");
444
    DO_TEST("net-virtio-device");
445
    DO_TEST("net-virtio-disable-offloads");
446 447
    DO_TEST("net-eth");
    DO_TEST("net-eth-ifname");
448
    DO_TEST("net-virtio-network-portgroup");
449
    DO_TEST("net-hostdev");
450
    DO_TEST("net-hostdev-vfio");
451
    DO_TEST("net-midonet");
452
    DO_TEST("net-openvswitch");
453
    DO_TEST("sound");
454
    DO_TEST("sound-device");
455
    DO_TEST("net-bandwidth");
456
    DO_TEST("net-bandwidth2");
457 458 459 460 461 462 463 464 465 466

    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");
467 468
    DO_TEST("serial-spiceport");
    DO_TEST("serial-spiceport-nospice");
469 470
    DO_TEST("parallel-tcp");
    DO_TEST("console-compat");
471
    DO_TEST_DIFFERENT("console-compat2");
472
    DO_TEST("console-virtio-many");
473
    DO_TEST("channel-guestfwd");
474
    DO_TEST("channel-virtio");
475
    DO_TEST_DIFFERENT("channel-virtio-state");
476

477
    DO_TEST("hostdev-usb-address");
478
    DO_TEST("hostdev-pci-address");
479
    DO_TEST("hostdev-vfio");
480
    DO_TEST("pci-rom");
M
Michal Privoznik 已提交
481
    DO_TEST("pci-serial-dev-chardev");
482

483
    DO_TEST("encrypted-disk");
E
Eric Blake 已提交
484
    DO_TEST_DIFFERENT("memtune");
485
    DO_TEST_DIFFERENT("memtune-unlimited");
486
    DO_TEST("blkiotune");
487
    DO_TEST("blkiotune-device");
O
Osier Yang 已提交
488
    DO_TEST("cputune");
489
    DO_TEST("cputune-zero-shares");
490
    DO_TEST_DIFFERENT("cputune-iothreadsched");
491
    DO_TEST("cputune-iothreadsched-zeropriority");
492 493
    DO_TEST("cputune-numatune");
    DO_TEST("vcpu-placement-static");
494

495
    DO_TEST("smp");
J
John Ferlan 已提交
496
    DO_TEST("iothreads");
497 498
    DO_TEST("iothreads-ids");
    DO_TEST("iothreads-ids-partial");
E
Eric Blake 已提交
499
    DO_TEST_DIFFERENT("cputune-iothreads");
500
    DO_TEST("iothreads-disk");
501
    DO_TEST("iothreads-disk-virtio-ccw");
502
    DO_TEST("lease");
503
    DO_TEST("event_idx");
504
    DO_TEST("vhost_queues");
505
    DO_TEST("interface-driver");
506
    DO_TEST("interface-server");
507
    DO_TEST("virtio-lun");
508

509
    DO_TEST("usb-redir");
510
    DO_TEST_DIFFERENT("usb-redir-filter");
511
    DO_TEST_DIFFERENT("usb-redir-filter-version");
L
Lei Li 已提交
512
    DO_TEST("blkdeviotune");
513
    DO_TEST_DIFFERENT("controller-usb-order");
514

515 516
    DO_TEST_FULL("seclabel-dynamic-baselabel", false, WHEN_INACTIVE);
    DO_TEST_FULL("seclabel-dynamic-override", false, WHEN_INACTIVE);
517
    DO_TEST_FULL("seclabel-dynamic-labelskip", true, WHEN_INACTIVE);
518
    DO_TEST_FULL("seclabel-dynamic-relabel", true, WHEN_INACTIVE);
519
    DO_TEST("seclabel-static");
520
    DO_TEST_FULL("seclabel-static-labelskip", false, WHEN_ACTIVE);
521
    DO_TEST_DIFFERENT("seclabel-none");
522
    DO_TEST("seclabel-dac-none");
523
    DO_TEST("seclabel-dynamic-none");
524
    DO_TEST("seclabel-device-multiple");
525
    DO_TEST_FULL("seclabel-dynamic-none-relabel", true, WHEN_INACTIVE);
526
    DO_TEST("numad-static-vcpu-no-numatune");
O
Osier Yang 已提交
527
    DO_TEST("disk-scsi-lun-passthrough-sgio");
528

529
    DO_TEST("disk-scsi-disk-vpd");
530
    DO_TEST_DIFFERENT("disk-source-pool");
531
    DO_TEST("disk-source-pool-mode");
532

533
    DO_TEST_DIFFERENT("disk-drive-discard");
O
Osier Yang 已提交
534

535 536 537
    DO_TEST("virtio-rng-random");
    DO_TEST("virtio-rng-egd");

538
    DO_TEST("pseries-nvram");
539
    DO_TEST_DIFFERENT("pseries-panic-missing");
540
    DO_TEST_DIFFERENT("pseries-panic-no-address");
541

542 543
    /* These tests generate different XML */
    DO_TEST_DIFFERENT("balloon-device-auto");
544
    DO_TEST_DIFFERENT("balloon-device-period");
545 546 547
    DO_TEST_DIFFERENT("channel-virtio-auto");
    DO_TEST_DIFFERENT("console-compat-auto");
    DO_TEST_DIFFERENT("disk-scsi-device-auto");
C
Cole Robinson 已提交
548
    DO_TEST_DIFFERENT("console-virtio");
M
Michal Novotny 已提交
549
    DO_TEST_DIFFERENT("serial-target-port-auto");
550
    DO_TEST_DIFFERENT("graphics-listen-network2");
551
    DO_TEST_DIFFERENT("graphics-spice-timeout");
552
    DO_TEST_DIFFERENT("numad-auto-vcpu-no-numatune");
553 554
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-no-cpuset-and-placement");
    DO_TEST_DIFFERENT("numad-auto-memory-vcpu-cpuset");
555
    DO_TEST_DIFFERENT("usb-ich9-ehci-addr");
556

557
    DO_TEST_DIFFERENT("metadata");
558
    DO_TEST_DIFFERENT("metadata-duplicate");
559

560
    DO_TEST("tpm-passthrough");
561
    DO_TEST("pci-bridge");
562
    DO_TEST_DIFFERENT("pci-bridge-many-disks");
563 564
    DO_TEST_DIFFERENT("pci-autoadd-addr");
    DO_TEST_DIFFERENT("pci-autoadd-idx");
565
    DO_TEST_DIFFERENT("pcie-root");
566
    DO_TEST_DIFFERENT("q35");
567
    DO_TEST("pcie-root-port");
568
    DO_TEST("pcie-root-port-too-many");
569
    DO_TEST("pcie-switch-upstream-port");
570
    DO_TEST("pcie-switch-downstream-port");
571

572 573
    DO_TEST("hostdev-scsi-lsi");
    DO_TEST("hostdev-scsi-virtio-scsi");
O
Osier Yang 已提交
574
    DO_TEST("hostdev-scsi-readonly");
H
Han Cheng 已提交
575

576
    DO_TEST("disk-copy_on_read");
577
    DO_TEST("hostdev-scsi-shareable");
O
Osier Yang 已提交
578
    DO_TEST("hostdev-scsi-sgio");
579
    DO_TEST("hostdev-scsi-rawio");
580

581
    DO_TEST_DIFFERENT("hostdev-scsi-autogen-address");
582
    DO_TEST("hostdev-scsi-large-unit");
583

J
John Ferlan 已提交
584 585 586 587 588
    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");

589 590
    DO_TEST_DIFFERENT("s390-defaultconsole");

591 592 593 594 595
    DO_TEST("pcihole64");
    DO_TEST_DIFFERENT("pcihole64-gib");
    DO_TEST("pcihole64-none");
    DO_TEST("pcihole64-q35");

596
    DO_TEST_DIFFERENT("panic");
597 598
    DO_TEST("panic-isa");
    DO_TEST("panic-pseries");
D
Dmitry Andreev 已提交
599
    DO_TEST("panic-double");
600
    DO_TEST("panic-no-address");
H
Hu Tao 已提交
601

602 603
    DO_TEST_DIFFERENT("disk-backing-chains");

J
Ján Tomko 已提交
604 605
    DO_TEST("chardev-label");

606 607
    DO_TEST_DIFFERENT("cpu-numa1");
    DO_TEST_DIFFERENT("cpu-numa2");
608
    DO_TEST_DIFFERENT("cpu-numa-no-memory-element");
609
    DO_TEST_DIFFERENT("cpu-numa-disordered");
610
    DO_TEST("cpu-numa-disjoint");
611
    DO_TEST("cpu-numa-memshared");
612

613
    DO_TEST_DIFFERENT("numatune-auto-prefer");
614 615
    DO_TEST_DIFFERENT("numatune-memnode");
    DO_TEST("numatune-memnode-no-memory");
616

617
    DO_TEST("bios-nvram");
618
    DO_TEST_DIFFERENT("bios-nvram-os-interleave");
619

620
    DO_TEST("tap-vhost");
621
    DO_TEST_DIFFERENT("tap-vhost-incorrect");
622
    DO_TEST("shmem");
623
    DO_TEST("smbios");
624
    DO_TEST("smbios-multiple-type2");
625
    DO_TEST("aarch64-aavmf-virtio-mmio");
626

627 628 629
    DO_TEST("aarch64-gic");
    DO_TEST("aarch64-gicv3");

630 631
    DO_TEST("memory-hotplug");
    DO_TEST("memory-hotplug-nonuma");
632
    DO_TEST("memory-hotplug-dimm");
633
    DO_TEST("net-udp");
634

M
Marc-André Lureau 已提交
635
    DO_TEST("video-virtio-gpu-device");
636
    DO_TEST("video-virtio-gpu-virgl");
637
    DO_TEST("virtio-input");
638
    DO_TEST("virtio-input-passthrough");
M
Marc-André Lureau 已提交
639

640
    qemuTestDriverFree(&driver);
641

642
    return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
643 644
}

645 646
VIRT_TEST_MAIN(mymain)

647 648
#else

649 650 651 652 653
int
main(void)
{
    return EXIT_AM_SKIP;
}
654 655

#endif /* WITH_QEMU */