tests: Fix typo in ovsdb-server test.
authorBen Pfaff <blp@nicira.com>
Fri, 4 Apr 2014 20:51:14 +0000 (13:51 -0700)
committerBen Pfaff <blp@nicira.com>
Mon, 7 Apr 2014 17:15:19 +0000 (10:15 -0700)
25 kB is about 25000 bytes, not 2500.

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
tests/ovsdb-server.at

index fc51820..a64fab3 100644 (file)
@@ -685,7 +685,7 @@ fi
 # Calculate the number of iterations we need to queue.  Each of the
 # iterations we execute, by itself, yields a monitor update of about
 # 25 kB, so fill up that much space plus a few for luck.
-n_iterations=`expr $rmem_max / 2500 + 5`
+n_iterations=`expr $rmem_max / 25000 + 5`
 echo rmem_max=$rmem_max n_iterations=$n_iterations
 
 # Calculate the exact number of monitor updates expected for $n_iterations,