[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 17/18] tests/qemu-iotests/172: Run QEMU with -vga none and -nic n
|
From: |
Thomas Huth |
|
Subject: |
[PATCH 17/18] tests/qemu-iotests/172: Run QEMU with -vga none and -nic none |
|
Date: |
Fri, 12 May 2023 14:40:32 +0200 |
This way QEMU won't complain in case the VGA card or the NIC device
are not available in the binary, thus it won't spoil the output
and the test then passes with such QEMU binaries that have a limited
configuration, too.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/qemu-iotests/172 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qemu-iotests/172 b/tests/qemu-iotests/172
index ff269ca7b5..4da0e0f2e2 100755
--- a/tests/qemu-iotests/172
+++ b/tests/qemu-iotests/172
@@ -56,7 +56,7 @@ do_run_qemu()
done
fi
echo quit
- ) | $QEMU -accel qtest -nographic -monitor stdio -serial none "$@"
+ ) | $QEMU -accel qtest -nographic -monitor stdio -serial none -vga none
-nic none "$@"
echo
}
--
2.31.1
- [PATCH 11/18] tests/qtest/readconfig-test: Check for the availability of USB controllers, (continued)
- [PATCH 11/18] tests/qtest/readconfig-test: Check for the availability of USB controllers, Thomas Huth, 2023/05/12
- [PATCH 12/18] tests/qtest/usb-hcd-uhci-test: Skip test if UHCI controller is not available, Thomas Huth, 2023/05/12
- [PATCH 15/18] tests/qtest: Check for the availability of virtio-ccw devices before using them, Thomas Huth, 2023/05/12
- [PATCH 13/18] tests/qtest/cdrom-test: Fix the test to also work without optional devices, Thomas Huth, 2023/05/12
- [PATCH 14/18] tests/qtest/virtio-ccw-test: Remove superfluous tests, Thomas Huth, 2023/05/12
- [PATCH 16/18] tests/qtest/meson.build: Run the net filter tests only with default devices, Thomas Huth, 2023/05/12
- [PATCH 18/18] .gitlab-ci.d/buildtest.yml: Run full "make check" with --without-default-devices, Thomas Huth, 2023/05/12
- [PATCH 17/18] tests/qemu-iotests/172: Run QEMU with -vga none and -nic none,
Thomas Huth <=