[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH qom-next v3 08/15] tests: Add virtio-console qtest
From: |
Andreas Färber |
Subject: |
[Qemu-devel] [PATCH qom-next v3 08/15] tests: Add virtio-console qtest |
Date: |
Wed, 12 Mar 2014 19:28:20 +0100 |
Signed-off-by: Andreas Färber <address@hidden>
---
tests/Makefile | 6 ++++++
tests/virtio-console-test.c | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
create mode 100644 tests/virtio-console-test.c
diff --git a/tests/Makefile b/tests/Makefile
index 5c402d5..e13e98a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -69,6 +69,9 @@ gcov-files-ipack-y += hw/ipack/ipack.c
check-qtest-ipack-y += tests/ipoctal232-test$(EXESUF)
gcov-files-ipack-y += hw/char/ipoctal232.c
+check-qtest-virtioserial-y += tests/virtio-console-test$(EXESUF)
+gcov-files-virtioserial-y += hw/char/virtio-console.c
+
gcov-files-virtio-y += i386-softmmu/hw/virtio/virtio.c
check-qtest-virtio-y += tests/virtio-net-test$(EXESUF)
gcov-files-virtio-y += i386-softmmu/hw/net/virtio-net.c
@@ -87,6 +90,8 @@ gcov-files-virtio-y += i386-softmmu/hw/9pfs/virtio-9p-device.c
endif
check-qtest-virtio-y += tests/virtio-serial-test$(EXESUF)
gcov-files-virtio-y += i386-softmmu/hw/char/virtio-serial-bus.c
+check-qtest-virtio-y += $(check-qtest-virtioserial-y)
+gcov-files-virtio-y += $(gcov-files-virtioserial-y)
check-qtest-pci-y += tests/e1000-test$(EXESUF)
gcov-files-pci-y += hw/net/e1000.c
@@ -261,6 +266,7 @@ tests/virtio-rng-test$(EXESUF): tests/virtio-rng-test.o
tests/virtio-scsi-test$(EXESUF): tests/virtio-scsi-test.o
tests/virtio-9p-test$(EXESUF): tests/virtio-9p-test.o
tests/virtio-serial-test$(EXESUF): tests/virtio-serial-test.o
+tests/virtio-console-test$(EXESUF): tests/virtio-console-test.o
tests/tpci200-test$(EXESUF): tests/tpci200-test.o
tests/ipoctal232-test$(EXESUF): tests/ipoctal232-test.o
tests/qom-test$(EXESUF): tests/qom-test.o
diff --git a/tests/virtio-console-test.c b/tests/virtio-console-test.c
new file mode 100644
index 0000000..f98f5af2
--- /dev/null
+++ b/tests/virtio-console-test.c
@@ -0,0 +1,34 @@
+/*
+ * QTest testcase for VirtIO Console
+ *
+ * Copyright (c) 2014 SUSE LINUX Products GmbH
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */
+
+#include <glib.h>
+#include <string.h>
+#include "libqtest.h"
+#include "qemu/osdep.h"
+
+/* Tests only initialization so far. TODO: Replace with functional tests */
+static void pci_nop(void)
+{
+}
+
+int main(int argc, char **argv)
+{
+ int ret;
+
+ g_test_init(&argc, &argv, NULL);
+ qtest_add_func("/virtio/console/pci/nop", pci_nop);
+
+ qtest_start("-device virtio-serial-pci,id=vser0 "
+ "-device virtconsole,bus=vser0.0");
+ ret = g_test_run();
+
+ qtest_end();
+
+ return ret;
+}
--
1.8.4.5
- [Qemu-devel] [PATCH qom-next v3 00/15] qtest: Prepare virtio, other PCI tests, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 03/15] tests: Add virtio-balloon qtest, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 01/15] tests: Clean up IndustryPack TCPI200 gcov paths, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 04/15] tests: Add virtio-rng qtest, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 02/15] tests: Add virtio-blk qtest, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 05/15] tests: Add virtio-scsi qtest, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 08/15] tests: Add virtio-console qtest,
Andreas Färber <=
- [Qemu-devel] [PATCH qom-next v3 11/15] pvpanic-test: Assert pause event, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 10/15] qtest: Factor out qtest_qmp_receive(), Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 06/15] tests: Add virtio-9p qtest, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 07/15] tests: Add virtio-serial qtest, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 15/15] tests: Add spapr-pci-host-bridge qtest, Andreas Färber, 2014/03/12
- [Qemu-devel] [PATCH qom-next v3 12/15] nvme: Permit zero-length block devices, Andreas Färber, 2014/03/12