From: antirez Date: Mon, 30 Jan 2012 20:08:10 +0000 (+0100) Subject: minimal change to obuf-limits.tcl test to make sure there are no false positives... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/fc4ed4299bfad004a3230bf6af0de89281bb2d44 minimal change to obuf-limits.tcl test to make sure there are no false positives with 32bit instances as well. --- diff --git a/tests/unit/obuf-limits.tcl b/tests/unit/obuf-limits.tcl index fa661aa4..54aa8ebc 100644 --- a/tests/unit/obuf-limits.tcl +++ b/tests/unit/obuf-limits.tcl @@ -15,7 +15,7 @@ start_server {tags {"obuf-limits"}} { if {![regexp {omem=([0-9]+)} $c - omem]} break if {$omem > 200000} break } - assert {$omem >= 99984 && $omem < 200000} + assert {$omem >= 99970 && $omem < 200000} $rd1 close }