summaryrefslogtreecommitdiff
path: root/tests/support/util.tcl
diff options
context:
space:
mode:
authorMadelyn Olson <34459052+madolson@users.noreply.github.com>2022-07-12 10:41:29 -0700
committerGitHub <noreply@github.com>2022-07-12 10:41:29 -0700
commit8a4e3bcd8d26a50c6d5f4417102f71f8e2e2d70d (patch)
treead810090a14fcd18628bf45321e8771904583471 /tests/support/util.tcl
parent8221d481656e3bc109d85dd6523e723d63024ae6 (diff)
downloadredis-8a4e3bcd8d26a50c6d5f4417102f71f8e2e2d70d.tar.gz
Cluster test improvements (#10920)
* Restructured testing to allow running cluster tests easily as part of the normal testing
Diffstat (limited to 'tests/support/util.tcl')
-rw-r--r--tests/support/util.tcl6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/support/util.tcl b/tests/support/util.tcl
index fd72dcf75..8153ad8bb 100644
--- a/tests/support/util.tcl
+++ b/tests/support/util.tcl
@@ -77,12 +77,6 @@ proc getInfoProperty {infostr property} {
}
}
-proc cluster_info {r field} {
- if {[regexp "^$field:(.*?)\r\n" [$r cluster info] _ value]} {
- set _ $value
- }
-}
-
# Return value for INFO property
proc status {r property} {
set _ [getInfoProperty [{*}$r info] $property]