diff options
author | Andreas Färber <afaerber@suse.de> | 2014-03-30 19:00:05 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-05-05 20:58:33 +0200 |
commit | d7b50c0cc052f705eceb17018ff36a453a6c60c7 (patch) | |
tree | 9b4dd1ab7df7fadcbe7d95a29d4938e427a98f3c /tests/ac97-test.c | |
parent | 535b45631ad7176e10dab89d55443b5a096500b9 (diff) |
tests: Add ac97 qtest
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/ac97-test.c')
-rw-r--r-- | tests/ac97-test.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/ac97-test.c b/tests/ac97-test.c new file mode 100644 index 0000000000..af30ea1dd6 --- /dev/null +++ b/tests/ac97-test.c @@ -0,0 +1,33 @@ +/* + * QTest testcase for AC97 + * + * 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("/ac97/nop", nop); + + qtest_start("-device AC97"); + ret = g_test_run(); + + qtest_end(); + + return ret; +} |