These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / tests / intel-hda-test.c
1 /*
2  * QTest testcase for Intel HDA
3  *
4  * Copyright (c) 2014 SUSE LINUX Products GmbH
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2 or later.
7  * See the COPYING file in the top-level directory.
8  */
9
10 #include "qemu/osdep.h"
11 #include <glib.h>
12 #include "libqtest.h"
13
14 #define HDA_ID "hda0"
15 #define CODEC_DEVICES " -device hda-output,bus=" HDA_ID ".0" \
16                       " -device hda-micro,bus=" HDA_ID ".0" \
17                       " -device hda-duplex,bus=" HDA_ID ".0"
18
19 /* Tests only initialization so far. TODO: Replace with functional tests */
20 static void ich6_test(void)
21 {
22     qtest_start("-device intel-hda,id=" HDA_ID CODEC_DEVICES);
23     qtest_end();
24 }
25
26 static void ich9_test(void)
27 {
28     qtest_start("-machine q35 -device ich9-intel-hda,bus=pcie.0,addr=1b.0,id="
29                 HDA_ID CODEC_DEVICES);
30     qtest_end();
31 }
32
33 int main(int argc, char **argv)
34 {
35     int ret;
36
37     g_test_init(&argc, &argv, NULL);
38     qtest_add_func("/intel-hda/ich6", ich6_test);
39     qtest_add_func("/intel-hda/ich9", ich9_test);
40
41     ret = g_test_run();
42
43     return ret;
44 }