Skip to content

Commit

Permalink
tests: Add nvme qtest
Browse files Browse the repository at this point in the history
Acked-by: Keith Busch <[email protected]>
Signed-off-by: Andreas Färber <[email protected]>
  • Loading branch information
afaerber committed Mar 31, 2014
1 parent 592408b commit fc96779
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,7 @@ nvme
M: Keith Busch <[email protected]>
S: Supported
F: hw/block/nvme*
F: tests/nvme-test.c

Xilinx EDK
M: Peter Crosthwaite <[email protected]>
Expand Down
3 changes: 3 additions & 0 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ check-qtest-pci-y += tests/eepro100-test$(EXESUF)
gcov-files-pci-y += hw/net/eepro100.c
check-qtest-pci-y += tests/ne2000-test$(EXESUF)
gcov-files-pci-y += hw/net/ne2000.c
check-qtest-pci-y += tests/nvme-test$(EXESUF)
gcov-files-pci-y += hw/block/nvme.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)
Expand Down Expand Up @@ -272,6 +274,7 @@ tests/ipoctal232-test$(EXESUF): tests/ipoctal232-test.o
tests/qom-test$(EXESUF): tests/qom-test.o
tests/blockdev-test$(EXESUF): tests/blockdev-test.o $(libqos-pc-obj-y)
tests/qdev-monitor-test$(EXESUF): tests/qdev-monitor-test.o $(libqos-pc-obj-y)
tests/nvme-test$(EXESUF): tests/nvme-test.o
tests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o

# QTest rules
Expand Down
34 changes: 34 additions & 0 deletions tests/nvme-test.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* QTest testcase for NVMe
*
* 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("/nvme/nop", nop);

qtest_start("-drive id=drv0,if=none,file=/dev/null "
"-device nvme,drive=drv0,serial=foo");
ret = g_test_run();

qtest_end();

return ret;
}

0 comments on commit fc96779

Please sign in to comment.