From 13ca823e8b2f88dd3af8f196de420a1f90529ca4 Mon Sep 17 00:00:00 2001 From: Octavian Purdila Date: Thu, 13 Nov 2025 09:09:55 +0000 Subject: [PATCH] lkl: tests: skip fuse tests based on autoconf fuse tests are skipped if lklfuse is not found, assuming that fuse was not enabled. Be more strict and check the host autoconf instead. Signed-off-by: Octavian Purdila --- tools/lkl/tests/lklfuse.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lkl/tests/lklfuse.sh b/tools/lkl/tests/lklfuse.sh index 2961aace8e33..093c90f883ce 100755 --- a/tools/lkl/tests/lklfuse.sh +++ b/tools/lkl/tests/lklfuse.sh @@ -98,7 +98,7 @@ if [ -z "$fstype" ]; then fstype="ext4" fi -if ! [ -x $script_dir/../lklfuse ]; then +if [ "$LKL_HOST_CONFIG_FUSE" != "y" ]; then lkl_test_plan 0 "lklfuse.sh $fstype" echo "lklfuse not available" exit 0