test/fuse: make the --with-fuse option be consistent with configure

Change-Id: I47dce4dfe01a7badb493978257577c1a8fc0be93
Signed-off-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1404
Reviewed-by: Xiaodong Liu <xiaodong.liu@intel.com>
Reviewed-by: <dongx.yi@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
Changpeng Liu 2020-03-23 00:57:12 -04:00 committed by Tomasz Zawadzki
parent 004b52fe6c
commit 5f66e5b160

View File

@ -264,7 +264,7 @@ if [ $SPDK_TEST_ISAL -eq 0 ]; then
fi fi
if [ $SPDK_TEST_BLOBFS -eq 1 ]; then if [ $SPDK_TEST_BLOBFS -eq 1 ]; then
if [[ -d /usr/include/fuse3 ]] && [[ -d /usr/local/include/fuse3 ]]; then if [[ -d /usr/include/fuse3 ]] || [[ -d /usr/local/include/fuse3 ]]; then
config_params+=' --with-fuse' config_params+=' --with-fuse'
else else
echo "FUSE not enabled because libfuse3 is not installed." echo "FUSE not enabled because libfuse3 is not installed."