HyperLogLog: speedup fuzz test.

This commit is contained in:
antirez 2019-03-15 17:13:19 +01:00
parent a4b90be9fc
commit dca7358279

View File

@ -116,7 +116,7 @@ start_server {tags {"hll"}} {
} {*WRONGTYPE*} } {*WRONGTYPE*}
test {Fuzzing dense/sparse encoding: Redis should always detect errors} { test {Fuzzing dense/sparse encoding: Redis should always detect errors} {
for {set j 0} {$j < 10000} {incr j} { for {set j 0} {$j < 1000} {incr j} {
r del hll r del hll
set items {} set items {}
set numitems [randomInt 3000] set numitems [randomInt 3000]
@ -139,7 +139,6 @@ start_server {tags {"hll"}} {
# Redis in some way. # Redis in some way.
catch { catch {
r pfcount hll r pfcount hll
r pfdebug getreg hll
} }
} }
} }