xref: /linux/tools/testing/selftests/vfio/scripts/run.sh (revision 13578a087152b85e53b1fa11639c814cb427808a)
1# SPDX-License-Identifier: GPL-2.0-or-later
2
3source $(dirname -- "${BASH_SOURCE[0]}")/lib.sh
4
5function main() {
6	local device_bdfs=$(ls ${DEVICES_DIR})
7
8	if [ -z "${device_bdfs}" ]; then
9		echo "No devices found, skipping."
10		exit 4
11	fi
12
13	"$@" ${device_bdfs}
14}
15
16main "$@"
17