2022-11-02 15:49:40 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright (C) 2021 Intel Corporation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
|
2021-10-29 07:24:39 +00:00
|
|
|
: ${MALLOC_BDEV_SIZE=256}
|
|
|
|
: ${MALLOC_BLOCK_SIZE=512}
|
|
|
|
|
2022-08-08 09:22:51 +00:00
|
|
|
source "$rootdir/test/vhost/common.sh"
|
|
|
|
|
2021-10-29 07:24:39 +00:00
|
|
|
# Verify vfio-user support of qemu.
|
2022-08-04 09:35:41 +00:00
|
|
|
VFIO_QEMU_BIN=${VFIO_QEMU_BIN:-/usr/local/qemu/vfio-user-irqmask2/bin/qemu-system-x86_64}
|
2022-08-08 09:22:51 +00:00
|
|
|
|
|
|
|
if [[ ! -e $VFIO_QEMU_BIN ]]; then
|
|
|
|
error "$VFIO_QEMU_BIN QEMU not found, cannot run the vfio-user tests"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
QEMU_BIN=$VFIO_QEMU_BIN
|