summaryrefslogtreecommitdiff
path: root/tests/virtio-rng-test.c
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2014-02-09 04:43:10 +0100
committerAndreas Färber <afaerber@suse.de>2014-03-13 01:21:56 +0100
commitb6f46f02f4756d0cd6c45515c1728a899fbb1dd3 (patch)
treed1827d5c88d450bb21f4e52d5170780f0e05d6df /tests/virtio-rng-test.c
parent02063aaa653c35291f06d58400a3349305000dd6 (diff)
downloadqemu-b6f46f02f4756d0cd6c45515c1728a899fbb1dd3.tar.gz
tests: Add virtio-rng qtest
Cc: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/virtio-rng-test.c')
-rw-r--r--tests/virtio-rng-test.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/virtio-rng-test.c b/tests/virtio-rng-test.c
new file mode 100644
index 0000000000..402c2060da
--- /dev/null
+++ b/tests/virtio-rng-test.c
@@ -0,0 +1,33 @@
+/*
+ * QTest testcase for VirtIO RNG
+ *
+ * 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/rng/pci/nop", pci_nop);
+
+ qtest_start("-device virtio-rng-pci");
+ ret = g_test_run();
+
+ qtest_end();
+
+ return ret;
+}