diff options
author | Andreas Färber <afaerber@suse.de> | 2014-03-30 19:05:20 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-05-05 20:58:33 +0200 |
commit | 8fa74c947df001d411452ea8e7d528e23235134d (patch) | |
tree | a79d3abc100406eeb03894f739a5ef0929b54a12 /tests/es1370-test.c | |
parent | d7b50c0cc052f705eceb17018ff36a453a6c60c7 (diff) |
tests: Add es1370 qtest
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/es1370-test.c')
-rw-r--r-- | tests/es1370-test.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/es1370-test.c b/tests/es1370-test.c new file mode 100644 index 0000000000..cc23fb5c67 --- /dev/null +++ b/tests/es1370-test.c @@ -0,0 +1,33 @@ +/* + * QTest testcase for ES1370 + * + * 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 nop(void) +{ +} + +int main(int argc, char **argv) +{ + int ret; + + g_test_init(&argc, &argv, NULL); + qtest_add_func("/es1370/nop", nop); + + qtest_start("-device ES1370"); + ret = g_test_run(); + + qtest_end(); + + return ret; +} |