diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/volume.rc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/volume.rc b/tests/volume.rc index ba0fac7bfc9..7a7a580ec3e 100644 --- a/tests/volume.rc +++ b/tests/volume.rc @@ -48,7 +48,10 @@ function online_brick_count () v3=`check_brick_status "Quota"` v4=`check_brick_status "Snapshot"` v5=`check_brick_status "Tier"` - tot=$((v1-v2-v3-v4-v5)) + v6=`check_brick_status "Scrubber"` + v7=`check_brick_status "Bitrot"` + + tot=$((v1-v2-v3-v4-v5-v6-v7)) echo $tot } |