From ae0c8e730693bacf42b2eac9ccd0dd3350bf9d4b Mon Sep 17 00:00:00 2001 From: Martin Pärtel Date: Sat, 15 Jul 2023 14:56:16 +0300 Subject: Support for fuse-t --- tests/test_bindfs.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_bindfs.rb b/tests/test_bindfs.rb index ed3da29..fe20055 100755 --- a/tests/test_bindfs.rb +++ b/tests/test_bindfs.rb @@ -31,7 +31,10 @@ include Errno $have_fuse_3 = Proc.new do system("pkg-config --exists fuse3") - $?.success? + $?.success? || Proc.new do + system("pkg-config --exists fuse-t") + $?.success? + end.call end.call $have_fuse_3_readdir_bug = $have_fuse_3 && Proc.new do system("pkg-config --max-version=3.10.1 fuse3") -- cgit v1.2.3