]> git.proxmox.com Git - mirror_qemu.git/blob - tests/megasas-test.c
megasas: add qtest
[mirror_qemu.git] / tests / megasas-test.c
1 /*
2 * QTest testcase for LSI MegaRAID
3 *
4 * Copyright (c) 2017 Red Hat Inc.
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
9
10 #include "qemu/osdep.h"
11 #include "libqtest.h"
12 #include "qemu/bswap.h"
13 #include "libqos/libqos-pc.h"
14 #include "libqos/libqos-spapr.h"
15
16 static QOSState *qmegasas_start(const char *extra_opts)
17 {
18 const char *arch = qtest_get_arch();
19 const char *cmd = "-drive id=hd0,if=none,file=null-co://,format=raw "
20 "-device megasas,id=scsi0,addr=04.0 "
21 "-device scsi-hd,bus=scsi0.0,drive=hd0 %s";
22
23 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
24 return qtest_pc_boot(cmd, extra_opts ? : "");
25 }
26
27 g_printerr("virtio-scsi tests are only available on x86 or ppc64\n");
28 exit(EXIT_FAILURE);
29 }
30
31 static void qmegasas_stop(QOSState *qs)
32 {
33 qtest_shutdown(qs);
34 }
35
36 /* Tests only initialization so far. TODO: Replace with functional tests */
37 static void pci_nop(void)
38 {
39 QOSState *qs;
40
41 qs = qmegasas_start(NULL);
42 qmegasas_stop(qs);
43 }
44
45 int main(int argc, char **argv)
46 {
47 g_test_init(&argc, &argv, NULL);
48 qtest_add_func("/megasas/pci/nop", pci_nop);
49
50 return g_test_run();
51 }