]> git.proxmox.com Git - mirror_qemu.git/blame - tests/intel-hda-test.c
vmstate: check subsection_found is enough
[mirror_qemu.git] / tests / intel-hda-test.c
CommitLineData
fbaf445a
AF
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
681c28a3 10#include "qemu/osdep.h"
fbaf445a 11#include "libqtest.h"
fbaf445a
AF
12
13#define HDA_ID "hda0"
14#define CODEC_DEVICES " -device hda-output,bus=" HDA_ID ".0" \
15 " -device hda-micro,bus=" HDA_ID ".0" \
16 " -device hda-duplex,bus=" HDA_ID ".0"
17
18/* Tests only initialization so far. TODO: Replace with functional tests */
19static void ich6_test(void)
20{
21 qtest_start("-device intel-hda,id=" HDA_ID CODEC_DEVICES);
22 qtest_end();
23}
24
25static void ich9_test(void)
26{
27 qtest_start("-machine q35 -device ich9-intel-hda,bus=pcie.0,addr=1b.0,id="
28 HDA_ID CODEC_DEVICES);
29 qtest_end();
30}
31
32int main(int argc, char **argv)
33{
fbaf445a
AF
34 g_test_init(&argc, &argv, NULL);
35 qtest_add_func("/intel-hda/ich6", ich6_test);
36 qtest_add_func("/intel-hda/ich9", ich9_test);
37
9be38598 38 return g_test_run();
fbaf445a 39}