aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2023-07-15 14:56:16 +0300
committerMartin Pärtel <martin.partel@gmail.com>2023-07-15 14:56:16 +0300
commitae0c8e730693bacf42b2eac9ccd0dd3350bf9d4b (patch)
tree9b475f12c50e6837285498906debbe0a70088181 /tests
parent9b1057f2e57cf0b304d94fe422e126bbc7f6d24b (diff)
downloadbindfs-ae0c8e730693bacf42b2eac9ccd0dd3350bf9d4b.tar.gz
Support for fuse-t
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_bindfs.rb5
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")