From: Thomas Monjalon Date: Mon, 16 Dec 2019 14:45:32 +0000 (+0100) Subject: devtools: fix debug build test X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=924e55fb340623f03fdf2ff7fbcfd78819d1db25 devtools: fix debug build test When testing build with +debug options, the statistics are enabled. It was wrongly matching CONFIG_RTE_IBVERBS_LINK_STATIC. The pattern is fixed to match only statistics config options. Fixes: 2c0dd7b69fb0 ("config: add static linkage of mlx dependency") Cc: stable@dpdk.org Reported-by: Ali Alnubani Signed-off-by: Thomas Monjalon --- diff --git a/devtools/test-build.sh b/devtools/test-build.sh index be565a1bea..52305fbb8c 100755 --- a/devtools/test-build.sh +++ b/devtools/test-build.sh @@ -149,7 +149,7 @@ config () # ! echo $3 | grep -q '+debug' || ( \ sed -ri="" 's,(RTE_LOG_DP_LEVEL=).*,\1RTE_LOG_DEBUG,' $1/.config sed -ri="" 's,(_DEBUG.*=)n,\1y,' $1/.config - sed -ri="" 's,(_STAT.*=)n,\1y,' $1/.config + sed -ri="" 's,(_STAT)([S_].*=|=)n,\1\2y,' $1/.config sed -ri="" 's,(TEST_PMD_RECORD_.*=)n,\1y,' $1/.config ) # Automatic configuration