
Occurrences of "redis" in TCL test suites and helpers, such as TCL client used in tests, are replaced with "valkey". Occurrences of uppercase "Redis" are not changed in this PR. No files are renamed in this PR. --------- Signed-off-by: Shivshankar-Reddy <shiva.sheri.github@gmail.com>
14 lines
362 B
Tcl
14 lines
362 B
Tcl
source tests/support/redis.tcl
|
|
source tests/support/util.tcl
|
|
|
|
set ::tlsdir "tests/tls"
|
|
|
|
proc bg_complex_data {host port db ops tls} {
|
|
set r [valkey $host $port 0 $tls]
|
|
$r client setname LOAD_HANDLER
|
|
$r select $db
|
|
createComplexDataset $r $ops
|
|
}
|
|
|
|
bg_complex_data [lindex $argv 0] [lindex $argv 1] [lindex $argv 2] [lindex $argv 3] [lindex $argv 4]
|