diff options
author | Andreas Färber <afaerber@suse.de> | 2014-02-21 16:42:15 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2014-03-13 01:21:56 +0100 |
commit | 26c9a015ef8ad158a62690f72ee04d10545db80d (patch) | |
tree | a1bac92b25792c84ac0792b914979c9c2cc6bde1 /tests/virtio-scsi-test.c | |
parent | b6f46f02f4756d0cd6c45515c1728a899fbb1dd3 (diff) | |
download | qemu-26c9a015ef8ad158a62690f72ee04d10545db80d.tar.gz qemu-26c9a015ef8ad158a62690f72ee04d10545db80d.tar.bz2 qemu-26c9a015ef8ad158a62690f72ee04d10545db80d.zip |
tests: Add virtio-scsi qtest
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'tests/virtio-scsi-test.c')
-rw-r--r-- | tests/virtio-scsi-test.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/virtio-scsi-test.c b/tests/virtio-scsi-test.c new file mode 100644 index 0000000000..3230908b98 --- /dev/null +++ b/tests/virtio-scsi-test.c @@ -0,0 +1,35 @@ +/* + * QTest testcase for VirtIO SCSI + * + * 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 pci_nop(void) +{ +} + +int main(int argc, char **argv) +{ + int ret; + + g_test_init(&argc, &argv, NULL); + qtest_add_func("/virtio/scsi/pci/nop", pci_nop); + + qtest_start("-drive id=drv0,if=none,file=/dev/null " + "-device virtio-scsi-pci,id=vscsi0 " + "-device scsi-hd,bus=vscsi0.0,drive=drv0"); + ret = g_test_run(); + + qtest_end(); + + return ret; +} |