mirror of https://github.com/xemu-project/xemu.git
tests: Add ac97 qtest
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
535b45631a
commit
d7b50c0cc0
|
@ -666,6 +666,7 @@ M: Gerd Hoffmann <kraxel@redhat.com>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: audio/
|
F: audio/
|
||||||
F: hw/audio/
|
F: hw/audio/
|
||||||
|
F: tests/ac97-test.c
|
||||||
|
|
||||||
Block
|
Block
|
||||||
M: Kevin Wolf <kwolf@redhat.com>
|
M: Kevin Wolf <kwolf@redhat.com>
|
||||||
|
|
|
@ -107,6 +107,8 @@ check-qtest-pci-y += tests/ne2000-test$(EXESUF)
|
||||||
gcov-files-pci-y += hw/net/ne2000.c
|
gcov-files-pci-y += hw/net/ne2000.c
|
||||||
check-qtest-pci-y += tests/nvme-test$(EXESUF)
|
check-qtest-pci-y += tests/nvme-test$(EXESUF)
|
||||||
gcov-files-pci-y += hw/block/nvme.c
|
gcov-files-pci-y += hw/block/nvme.c
|
||||||
|
check-qtest-pci-y += tests/ac97-test$(EXESUF)
|
||||||
|
gcov-files-pci-y += hw/audio/ac97.c
|
||||||
check-qtest-pci-y += $(check-qtest-virtio-y)
|
check-qtest-pci-y += $(check-qtest-virtio-y)
|
||||||
gcov-files-pci-y += $(gcov-files-virtio-y) hw/virtio/virtio-pci.c
|
gcov-files-pci-y += $(gcov-files-virtio-y) hw/virtio/virtio-pci.c
|
||||||
check-qtest-pci-y += tests/tpci200-test$(EXESUF)
|
check-qtest-pci-y += tests/tpci200-test$(EXESUF)
|
||||||
|
@ -292,6 +294,7 @@ tests/qdev-monitor-test$(EXESUF): tests/qdev-monitor-test.o $(libqos-pc-obj-y)
|
||||||
tests/nvme-test$(EXESUF): tests/nvme-test.o
|
tests/nvme-test$(EXESUF): tests/nvme-test.o
|
||||||
tests/pvpanic-test$(EXESUF): tests/pvpanic-test.o
|
tests/pvpanic-test$(EXESUF): tests/pvpanic-test.o
|
||||||
tests/i82801b11-test$(EXESUF): tests/i82801b11-test.o
|
tests/i82801b11-test$(EXESUF): tests/i82801b11-test.o
|
||||||
|
tests/ac97-test$(EXESUF): tests/ac97-test.o
|
||||||
tests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o
|
tests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o
|
||||||
|
|
||||||
# QTest rules
|
# QTest rules
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue