diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2023-07-15 14:56:16 +0300 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2023-07-15 14:56:16 +0300 |
commit | ae0c8e730693bacf42b2eac9ccd0dd3350bf9d4b (patch) | |
tree | 9b475f12c50e6837285498906debbe0a70088181 /tests/test_bindfs.rb | |
parent | 9b1057f2e57cf0b304d94fe422e126bbc7f6d24b (diff) | |
download | bindfs-ae0c8e730693bacf42b2eac9ccd0dd3350bf9d4b.tar.gz |
Support for fuse-t
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") |