Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
make the minimum rate a bit lower and fix then -> than
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Apr 25, 2017
1 parent 9ce6ce5 commit deafdc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/bandwidth-limit-per-client-test
Expand Up @@ -49,8 +49,8 @@ fi
# Check if job1 is throuput is between 850 and 1150 KB/S
#
rate=`grep "Rate:.*KB/s" ${tmp}/log1.out | cut -d: -f2 | sed -e 's/ *//' -e 's/\..*//'`
if test $rate -gt 850 -a $rate -lt 1150 ; then
print_debug "Backup Rate more then 850 and less then 1150 KB/s, ${rate} OK."
if test $rate -gt 810 -a $rate -lt 1150 ; then
print_debug "Backup Rate more than 850 and less than 1150 KB/s, ${rate} OK."
else
estat=1
fi
Expand Down

0 comments on commit deafdc4

Please sign in to comment.