]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
tests/megasas: Make test independent of global_qtest
authorThomas Huth <thuth@redhat.com>
Tue, 9 Apr 2019 08:52:42 +0000 (10:52 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 8 May 2019 14:59:28 +0000 (16:59 +0200)
The test uses memwrite() and thus relies on global_qtest. Let's replace it
with qtest_memwrite(), so that we are independent from global_qtest here.

Message-Id: <20190409085245.31548-3-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/megasas-test.c

index 33aa97042c448e1cb7e3c58d617899de459b5b6f..1111d331d33f03bf4fe98cf17092fa2d4dddb151 100644 (file)
@@ -66,7 +66,7 @@ static void megasas_pd_get_info_fuzz(void *obj, void *data, QGuestAllocator *all
     context[7] = cpu_to_le32(0);
 
     context_pa = guest_alloc(alloc, sizeof(context));
-    memwrite(context_pa, context, sizeof(context));
+    qtest_memwrite(dev->bus->qts, context_pa, context, sizeof(context));
     qpci_io_writel(dev, bar, 0x40, context_pa);
 }