Regression test for the main problem causing issue #141. Minor changes/fixes/additions to the test suite itself needed to write the test.

This commit is contained in:
antirez
2012-01-06 17:28:40 +01:00
parent d4945b253b
commit 2c2b6159d3
4 changed files with 85 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
source tests/support/redis.tcl
proc gen_write_load {host port seconds} {
set start_time [clock seconds]
set r [redis $host $port 1]
$r select 9
while 1 {
$r set [expr rand()] [expr rand()]
if {[clock seconds]-$start_time > $seconds} {
exit 0
}
}
}
gen_write_load [lindex $argv 0] [lindex $argv 1] [lindex $argv 2]