mirror of
http://github.com/valkey-io/valkey
synced 2024-11-23 11:51:01 +00:00
20 lines
472 B
Tcl
20 lines
472 B
Tcl
|
# Sentinel test suite. Copyright (C) 2014 Salvatore Sanfilippo antirez@gmail.com
|
||
|
# This softare is released under the BSD License. See the COPYING file for
|
||
|
# more information.
|
||
|
|
||
|
cd tests/sentinel
|
||
|
source ../instances.tcl
|
||
|
|
||
|
proc main {} {
|
||
|
parse_options
|
||
|
spawn_instance sentinel $::sentinel_base_port $::instances_count
|
||
|
spawn_instance redis $::redis_base_port $::instances_count
|
||
|
run_tests
|
||
|
cleanup
|
||
|
}
|
||
|
|
||
|
if {[catch main e]} {
|
||
|
puts $::errorInfo
|
||
|
cleanup
|
||
|
}
|