From 5f66e5b1605326972a34dbc18aa0801866370992 Mon Sep 17 00:00:00 2001 From: Changpeng Liu Date: Mon, 23 Mar 2020 00:57:12 -0400 Subject: [PATCH] test/fuse: make the --with-fuse option be consistent with configure Change-Id: I47dce4dfe01a7badb493978257577c1a8fc0be93 Signed-off-by: Changpeng Liu Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1404 Reviewed-by: Xiaodong Liu Reviewed-by: Reviewed-by: Karol Latecki Reviewed-by: Shuhei Matsumoto Reviewed-by: Aleksey Marchuk Tested-by: SPDK CI Jenkins --- test/common/autotest_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/autotest_common.sh b/test/common/autotest_common.sh index ce9109b0f..59c3681d0 100644 --- a/test/common/autotest_common.sh +++ b/test/common/autotest_common.sh @@ -264,7 +264,7 @@ if [ $SPDK_TEST_ISAL -eq 0 ]; then fi 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' else echo "FUSE not enabled because libfuse3 is not installed."