summaryrefslogtreecommitdiff
path: root/tests/helpers/bg_block_op.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/bg_block_op.tcl')
-rw-r--r--tests/helpers/bg_block_op.tcl8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/helpers/bg_block_op.tcl b/tests/helpers/bg_block_op.tcl
index 238d3874f..c8b323308 100644
--- a/tests/helpers/bg_block_op.tcl
+++ b/tests/helpers/bg_block_op.tcl
@@ -1,6 +1,8 @@
source tests/support/redis.tcl
source tests/support/util.tcl
+set ::tlsdir "tests/tls"
+
# This function sometimes writes sometimes blocking-reads from lists/sorted
# sets. There are multiple processes like this executing at the same time
# so that we have some chance to trap some corner condition if there is
@@ -8,8 +10,8 @@ source tests/support/util.tcl
# space to just a few elements, and balance the operations so that it is
# unlikely that lists and zsets just get more data without ever causing
# blocking.
-proc bg_block_op {host port db ops} {
- set r [redis $host $port]
+proc bg_block_op {host port db ops tls} {
+ set r [redis $host $port 0 $tls]
$r select $db
for {set j 0} {$j < $ops} {incr j} {
@@ -49,4 +51,4 @@ proc bg_block_op {host port db ops} {
}
}
-bg_block_op [lindex $argv 0] [lindex $argv 1] [lindex $argv 2] [lindex $argv 3]
+bg_block_op [lindex $argv 0] [lindex $argv 1] [lindex $argv 2] [lindex $argv 3] [lindex $argv 4]