summaryrefslogtreecommitdiff
path: root/tests/virtio-console-test.c
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2014-02-21 17:49:12 +0100
committerAndreas Färber <afaerber@suse.de>2014-03-13 01:21:57 +0100
commit6e8114a0650e78b6476e312de59361ef11c62b59 (patch)
tree56863daf7ded05271434edad97cc70d6c31af81a /tests/virtio-console-test.c
parentaa97405e3289059ab614e906ce4f1141971dfd9c (diff)
downloadqemu-6e8114a0650e78b6476e312de59361ef11c62b59.tar.gz
tests: Add virtio-console qtest
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/virtio-console-test.c')
-rw-r--r--tests/virtio-console-test.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/virtio-console-test.c b/tests/virtio-console-test.c
new file mode 100644
index 0000000000..f98f5af252
--- /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;
+}