diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2025-06-08 14:38:18 +0300 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2025-06-08 14:38:18 +0300 |
commit | 2dce69c4dea0bcb9e98c2965e6ac6b25402fcae9 (patch) | |
tree | 27af010adc569eda1d6d9c02326c10bbe40d715b /tests | |
parent | d5152d998d44c041a322959eca6a367272eb34c0 (diff) | |
download | bindfs-2dce69c4dea0bcb9e98c2965e6ac6b25402fcae9.tar.gz |
-onoattrcache with fuse-t by default. Maybe it gets rid of test flakiness.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_bindfs.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_bindfs.rb b/tests/test_bindfs.rb index 5f9fc18..c068b28 100755 --- a/tests/test_bindfs.rb +++ b/tests/test_bindfs.rb @@ -755,8 +755,8 @@ testenv("--resolve-symlinks", :title => "resolving broken symlinks") do end # Issue #28 reproduction attempt. -# Flaky on fuse-t without noattrcache (2025-06-08) -testenv(if $fuse_t then "-o noattrcache" else "" end, :title => "many files in a directory") do +# Observation (2025-06-08): Flaky on fuse-t without noattrcache. Enabled by default by bindfs since. +testenv("", :title => "many files in a directory") do mkdir('src/dir') expected_entries = ['.', '..'] 10000.times do |i| |