From 2be0335489ef5ab35f4d609a2b653110d90e9cbb Mon Sep 17 00:00:00 2001 From: Kamil Godzwon Date: Tue, 6 Dec 2022 07:24:02 -0500 Subject: [PATCH] scripts/run_vhost_test: fix shellcheck SC2294 warning The warning appeared during Fedora 37 VM image testing Signed-off-by: Kamil Godzwon Signed-off-by: Michal Berger Change-Id: I2ceff22d08614fec0c27b9931d71753f57cf99bd Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15794 Tested-by: SPDK CI Jenkins Reviewed-by: Krzysztof Karas Reviewed-by: Jim Harris Reviewed-by: Tomasz Zawadzki --- scripts/perf/vhost/run_vhost_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/perf/vhost/run_vhost_test.sh b/scripts/perf/vhost/run_vhost_test.sh index 1483c7a0e..1aadf5711 100755 --- a/scripts/perf/vhost/run_vhost_test.sh +++ b/scripts/perf/vhost/run_vhost_test.sh @@ -57,7 +57,7 @@ fio_conf() { FIO } -(($#)) && eval "$@" +(($#)) && eval "$*" perf_args+=("--vm-image=${vm_image:-$VM_IMAGE}") perf_args+=("--ctrl-type=${ctrl_type:-spdk_vhost_scsi}")