diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2011-07-22 18:14:06 +0300 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2011-07-22 18:14:06 +0300 |
commit | f43b6e544f9fdc33f21cd03b091d024ac75307fe (patch) | |
tree | 5b5675699a391b79326efcb14dd7fde7267365e7 /tests/common.rb | |
parent | ef0f26d663e3fedfb2a18e0b7b0f73e418fdd7fd (diff) | |
download | bindfs-f43b6e544f9fdc33f21cd03b091d024ac75307fe.tar.gz |
Tests: clarified that having to wait for fuse4bsd is a fuse4bsd bug.
Diffstat (limited to 'tests/common.rb')
-rwxr-xr-x | tests/common.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/common.rb b/tests/common.rb index fcdb0a7..b7ce79f 100755 --- a/tests/common.rb +++ b/tests/common.rb @@ -77,11 +77,10 @@ def testenv(bindfs_args, &block) # Wait for bindfs to daemonize itself Process.wait bindfs_pid - # Wait for the mount to appear (fuse4bsd is sometimes slow) + # fuse4bsd is sometimes slow to activate the mount. + # http://www.freebsd.org/cgi/query-pr.cgi?pr=159102 if `uname -a`.downcase.include? 'freebsd' puts "Waiting for fuse4bsd" - # The mount is sometimes not ready even after it appears in `mount`. - # If there's a better solution, I'd like to hear it. sleep 0.5 end |