diff options
Diffstat (limited to 'tests/test_bindfs.rb')
-rwxr-xr-x | tests/test_bindfs.rb | 5 |
1 files changed, 4 insertions, 1 deletions
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") |