diff options
| -rwxr-xr-x | tests/bugs/bug-979365.t | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/bugs/bug-979365.t b/tests/bugs/bug-979365.t index f5d9efd5487..e94dc9aa8a2 100755 --- a/tests/bugs/bug-979365.t +++ b/tests/bugs/bug-979365.t @@ -23,7 +23,12 @@ TEST kill_brick $V0 $H0 $B0/${V0}0  TEST dd of=$M0/a if=/dev/zero bs=1M count=10  #fsyncs take a while to complete.  sleep 5 -TEST [[ $(num_fsyncs) -ne 0 ]] + +# There can be zero or more fsyncs, depending on the order +# in which the writes reached the server, in turn deciding +# whether they were treated as "appending" writes or not. + +TEST [[ $(num_fsyncs) -ge 0 ]]  #Stop the volume to erase the profile info of old operations  TEST $CLI volume profile $V0 stop  TEST $CLI volume stop $V0  | 
