Skip to content

Commit 951883b

Browse files
committed
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 <tavip@google.com>
1 parent 9ae9fd6 commit 951883b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/lkl/tests/lklfuse.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ if [ -z "$fstype" ]; then
9898
fstype="ext4"
9999
fi
100100

101-
if ! [ -x $script_dir/../lklfuse ]; then
101+
if [ "$LKL_HOST_CONFIG_FUSE" != "y" ]; then
102102
lkl_test_plan 0 "lklfuse.sh $fstype"
103103
echo "lklfuse not available"
104104
exit 0

0 commit comments

Comments
 (0)