diff options
author | Andreas Färber <afaerber@suse.de> | 2014-02-21 17:36:57 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-03-13 01:21:57 +0100 |
commit | aa97405e3289059ab614e906ce4f1141971dfd9c (patch) | |
tree | 22e6617d82c8df24dcc5321cabd55d764085594f /tests/virtio-serial-test.c | |
parent | 26c9a015ef8ad158a62690f72ee04d10545db80d (diff) | |
download | hqemu-aa97405e3289059ab614e906ce4f1141971dfd9c.zip hqemu-aa97405e3289059ab614e906ce4f1141971dfd9c.tar.gz |
tests: Add virtio-serial qtest
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/virtio-serial-test.c')
-rw-r--r-- | tests/virtio-serial-test.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/virtio-serial-test.c b/tests/virtio-serial-test.c new file mode 100644 index 0000000..e743875 --- /dev/null +++ b/tests/virtio-serial-test.c @@ -0,0 +1,33 @@ +/* + * QTest testcase for VirtIO Serial + * + * 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/serial/pci/nop", pci_nop); + + qtest_start("-device virtio-serial-pci"); + ret = g_test_run(); + + qtest_end(); + + return ret; +} |