From fc4ed4299bfad004a3230bf6af0de89281bb2d44 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 30 Jan 2012 21:08:10 +0100 Subject: [PATCH] minimal change to obuf-limits.tcl test to make sure there are no false positives with 32bit instances as well. --- tests/unit/obuf-limits.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/obuf-limits.tcl b/tests/unit/obuf-limits.tcl index fa661aa4c..54aa8ebc8 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 }