-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Acked-by: Keith Busch <[email protected]> Signed-off-by: Andreas Färber <[email protected]>
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |