We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b7a15e commit d426e43Copy full SHA for d426e43
2 files changed
tests/10_basic.sh
@@ -3,7 +3,9 @@ function setup() {
3
test ! -z "$TEST_BUNDLE"
4
mount_dir=$(mktemp -d)
5
sparsebundlefs -s -f -D $TEST_BUNDLE $mount_dir &
6
+ pid=$!
7
for i in {0..50}; do
8
+ kill -0 $pid >/dev/null 2>&1
9
# FIXME: Find actual mount callback in fuse?
10
grep -q "bundle has" $test_output_file && break || sleep 0.1
11
done
tests/20_allow_other.sh
sparsebundlefs -s -f -D -o allow_other $TEST_BUNDLE $mount_dir &
0 commit comments