diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2018-11-29 12:51:08 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 17:28:41 +0100 |
commit | 5cb8f0db0a5eff0206376f2f344cf73fb7d2cf5f (patch) | |
tree | a721e6bca7f22f6181647cee48bfb122f551d895 /tests/libqos | |
parent | a3713493036eca53b295b03c26e6b4bd17083b99 (diff) |
qos-test: virtio-blk test node
Convert tests/virtio-blk-test in qgraph test node,
virtio-blk-test. This test consumes a virtio-blk interface
and checks that its function return the expected values.
Some functions are implemented only for virtio-blk-pci, so they
don't consume virtio-blk, but virtio-blk-pci
Note that this test does not allocate any virtio-blk structure,
it's all done by the qtest walking graph mechanism. The allocator
is also provided by qgraph; remove malloc-generic.c and malloc-generic.h
which are not used anymore.
Signed-off-by: Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/libqos')
-rw-r--r-- | tests/libqos/malloc-generic.c | 20 | ||||
-rw-r--r-- | tests/libqos/malloc-generic.h | 18 |
2 files changed, 0 insertions, 38 deletions
diff --git a/tests/libqos/malloc-generic.c b/tests/libqos/malloc-generic.c deleted file mode 100644 index 94290daffc..0000000000 --- a/tests/libqos/malloc-generic.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Basic libqos generic malloc support - * - * Copyright (c) 2014 Marc MarĂ - * - * 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 "qemu/osdep.h" -#include "libqos/malloc-generic.h" -#include "libqos/malloc.h" - -void generic_alloc_init(QGuestAllocator *s, uint64_t base_addr, - uint64_t size, uint32_t page_size) -{ - uint64_t start = base_addr + (1 << 20); /* Start at 1MB */ - - alloc_init(s, 0, start, start + size, page_size); -} diff --git a/tests/libqos/malloc-generic.h b/tests/libqos/malloc-generic.h deleted file mode 100644 index 40ea058b2d..0000000000 --- a/tests/libqos/malloc-generic.h +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Basic libqos generic malloc support - * - * Copyright (c) 2014 Marc MarĂ - * - * This work is licensed under the terms of the GNU GPL, version 2 or later. - * See the COPYING file in the top-level directory. - */ - -#ifndef LIBQOS_MALLOC_GENERIC_H -#define LIBQOS_MALLOC_GENERIC_H - -#include "libqos/malloc.h" - -void generic_alloc_init(QGuestAllocator *s, uint64_t base_addr, uint64_t size, - uint32_t page_size); - -#endif |