]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tests: Add es1370 qtest
authorAndreas Färber <afaerber@suse.de>
Sun, 30 Mar 2014 17:05:20 +0000 (19:05 +0200)
committerAndreas Färber <afaerber@suse.de>
Mon, 5 May 2014 18:58:33 +0000 (20:58 +0200)
Signed-off-by: Andreas Färber <afaerber@suse.de>
MAINTAINERS
tests/Makefile
tests/es1370-test.c [new file with mode: 0644]

index e81967c1e9dce4b0fa98666291fb2d375b9ca73d..034238c51e32b900342b0bd61d0fc98d147c429e 100644 (file)
@@ -667,6 +667,7 @@ S: Maintained
 F: audio/
 F: hw/audio/
 F: tests/ac97-test.c
+F: tests/es1370-test.c
 
 Block
 M: Kevin Wolf <kwolf@redhat.com>
index aeaa665c63accce0d3d52a114ececd409830cf6b..23d5d4a7749361e8731509b36b7549959d9c1c21 100644 (file)
@@ -109,6 +109,8 @@ check-qtest-pci-y += tests/nvme-test$(EXESUF)
 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 += tests/es1370-test$(EXESUF)
+gcov-files-pci-y += hw/audio/es1370.c
 check-qtest-pci-y += $(check-qtest-virtio-y)
 gcov-files-pci-y += $(gcov-files-virtio-y) hw/virtio/virtio-pci.c
 check-qtest-pci-y += tests/tpci200-test$(EXESUF)
@@ -295,6 +297,7 @@ tests/nvme-test$(EXESUF): tests/nvme-test.o
 tests/pvpanic-test$(EXESUF): tests/pvpanic-test.o
 tests/i82801b11-test$(EXESUF): tests/i82801b11-test.o
 tests/ac97-test$(EXESUF): tests/ac97-test.o
+tests/es1370-test$(EXESUF): tests/es1370-test.o
 tests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o
 
 # QTest rules
diff --git a/tests/es1370-test.c b/tests/es1370-test.c
new file mode 100644 (file)
index 0000000..cc23fb5
--- /dev/null
@@ -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;
+}