diff options
author | Laurent Vivier <lvivier@redhat.com> | 2021-12-08 14:03:48 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-12-15 08:07:04 +0100 |
commit | e32b96b559cefb8cbb7038e913b94567e1a18045 (patch) | |
tree | 4c6bab829f170a51aaa9979b87b686c9f62a9c5e /tests/qtest/meson.build | |
parent | efe84f03ea88db49ae9180a9ffe4634349333c4e (diff) | |
download | qemu-e32b96b559cefb8cbb7038e913b94567e1a18045.zip qemu-e32b96b559cefb8cbb7038e913b94567e1a18045.tar.gz qemu-e32b96b559cefb8cbb7038e913b94567e1a18045.tar.bz2 |
tests/qtest: add some tests for virtio-net failover
Add test cases to test several error cases that must be
generated by invalid failover configuration.
Add a combination of coldplug and hotplug test cases to be
sure the primary is correctly managed according the
presence or not of the STANDBY feature.
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Message-Id: <20211208130350.10178-3-lvivier@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/meson.build')
-rw-r--r-- | tests/qtest/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build index c9d8458..975a0f2 100644 --- a/tests/qtest/meson.build +++ b/tests/qtest/meson.build @@ -68,6 +68,10 @@ qtests_i386 = \ (config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) + \ (config_all_devices.has_key('CONFIG_E1000E_PCI_EXPRESS') ? ['fuzz-e1000e-test'] : []) + \ (config_all_devices.has_key('CONFIG_ESP_PCI') ? ['am53c974-test'] : []) + \ + (config_all_devices.has_key('CONFIG_VIRTIO_NET') and \ + config_all_devices.has_key('CONFIG_Q35') and \ + config_all_devices.has_key('CONFIG_VIRTIO_PCI') and \ + slirp.found() ? ['virtio-net-failover'] : []) + \ (unpack_edk2_blobs ? ['bios-tables-test'] : []) + \ qtests_pci + \ ['fdc-test', |