From bfaad6be04dd32db8cd542684227f5c87aeef576 Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Mon, 15 Jun 2020 14:14:46 +0200 Subject: [PATCH] test/common: Fix name of the logflag argument Change-Id: I3b77027a46ba8d4e5f8733be21891f189a50c91f Signed-off-by: Michal Berger Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2896 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins Reviewed-by: Aleksey Marchuk Reviewed-by: Ben Walker Reviewed-by: Paul Luse Reviewed-by: Jim Harris Reviewed-by: Tomasz Zawadzki --- test/common/applications.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/common/applications.sh b/test/common/applications.sh index 2800600cf..bd32bf1b7 100644 --- a/test/common/applications.sh +++ b/test/common/applications.sh @@ -14,9 +14,9 @@ VHOST_APP=("$_app_dir/vhost") if [[ -e $_root/include/spdk/config.h ]]; then if [[ $(< "$_root/include/spdk/config.h") == *"#define SPDK_CONFIG_DEBUG"* ]] \ && ((SPDK_AUTOTEST_DEBUG_APPS)); then - VHOST_FUZZ_APP+=("--log-flags=all") - ISCSI_APP+=("--log-flags=all") - NVMF_APP+=("--log-flags=all") - VHOST_APP+=("--log-flags=all") + VHOST_FUZZ_APP+=("--logflag=all") + ISCSI_APP+=("--logflag=all") + NVMF_APP+=("--logflag=all") + VHOST_APP+=("--logflag=all") fi fi