summaryrefslogtreecommitdiff
path: root/runtest-sentinel
diff options
context:
space:
mode:
authorbyte2016 <[email protected]>2018-06-12 19:55:38 +0800
committerbyte2016 <[email protected]>2018-06-12 19:55:38 +0800
commit76f2c13d7c27d7419af79ea0bdc7ab7717b6935b (patch)
treeaa2ca741501d40990b892d504a1cc3b7defe57aa /runtest-sentinel
Init commit.HEADmaster
Diffstat (limited to 'runtest-sentinel')
-rw-r--r--runtest-sentinel14
1 files changed, 14 insertions, 0 deletions
diff --git a/runtest-sentinel b/runtest-sentinel
new file mode 100644
index 0000000..3fb1ef6
--- /dev/null
+++ b/runtest-sentinel
@@ -0,0 +1,14 @@
+#!/bin/sh
+TCL_VERSIONS="8.5 8.6"
+TCLSH=""
+
+for VERSION in $TCL_VERSIONS; do
+ TCL=`which tclsh$VERSION 2>/dev/null` && TCLSH=$TCL
+done
+
+if [ -z $TCLSH ]
+then
+ echo "You need tcl 8.5 or newer in order to run the Redis Sentinel test"
+ exit 1
+fi
+$TCLSH tests/sentinel/run.tcl $*