diff options
author | Andreas Färber <afaerber@suse.de> | 2014-02-09 04:39:47 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-03-13 01:21:56 +0100 |
commit | 02063aaa653c35291f06d58400a3349305000dd6 (patch) | |
tree | cd5a3948c7a16d728d102c15c8fde6238e557a0e /tests/virtio-balloon-test.c | |
parent | c7a59bed62184d2d5ef5c6ed87c7ee6c23c57802 (diff) |
tests: Add virtio-balloon 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-balloon-test.c')
-rw-r--r-- | tests/virtio-balloon-test.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/virtio-balloon-test.c b/tests/virtio-balloon-test.c new file mode 100644 index 0000000000..becebb51a7 --- /dev/null +++ b/tests/virtio-balloon-test.c @@ -0,0 +1,33 @@ +/* + * QTest testcase for VirtIO Balloon + * + * 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/balloon/pci/nop", pci_nop); + + qtest_start("-device virtio-balloon-pci"); + ret = g_test_run(); + + qtest_end(); + + return ret; +} |