[PATCH v3 2/4] iotests/nbd-tls-iothread: skip on non-x86 hardware
Eric Farman <[email protected]>
| Newsgroups | gmane.comp.emulators.qemu,gmane.comp.emulators.qemu.block |
|---|---|
| Message-ID | <[email protected]> |
Like nbd-in-qcow2-chain, this test assumes a q35 machine is present, which might not be available on other hosts. Unlike that test, simply allowing it to run with the default machine still throws an errors. Fence this to PC-only machines for now. Signed-off-by: Eric Farman <[email protected]> --- tests/qemu-iotests/tests/nbd-tls-iothread | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/qemu-iotests/tests/nbd-tls-iothread b/tests/qemu-iotests/tests/nbd-tls-iothread index a2fb07206e..4326e2d3e5 100755 --- a/tests/qemu-iotests/tests/nbd-tls-iothread +++ b/tests/qemu-iotests/tests/nbd-tls-iothread @@ -47,6 +47,10 @@ cd .. _supported_fmt qcow2 # Hardcoded to qcow2 command line and QMP below _supported_proto file +if [ "$QEMU_DEFAULT_MACHINE" != "pc" ]; then + _notrun "Requires a PC machine" +fi + # pick_unused_port # # Picks and returns an "unused" port, setting the global variable -- 2.53.0