test/common: Add SPDK_APP wrapper for spdk_tgt

Change-Id: Ia085576c88c1824dca6b3b419259414cbb60c8a8
Signed-off-by: Michal Berger <michalx.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/5736
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Michal Berger 2020-12-29 11:54:05 +01:00 committed by Tomasz Zawadzki
parent acf116c6d5
commit 731cd47e66

View File

@ -10,6 +10,7 @@ ISCSI_APP=("$_app_dir/iscsi_tgt")
NVMF_APP=("$_app_dir/nvmf_tgt")
VHOST_APP=("$_app_dir/vhost")
DD_APP=("$_app_dir/spdk_dd")
SPDK_APP=("$_app_dir/spdk_tgt")
# Check if apps should execute under debug flags
if [[ -e $_root/include/spdk/config.h ]]; then
@ -20,5 +21,6 @@ if [[ -e $_root/include/spdk/config.h ]]; then
NVMF_APP+=("--logflag=all")
VHOST_APP+=("--logflag=all")
DD_APP+=("--logflag=all")
SPDK_APP+=("--logflag=all")
fi
fi