2014-04-25 00:01:41 +08:00
|
|
|
#!/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
|
2020-08-11 18:35:20 +08:00
|
|
|
echo "You need tcl 8.5 or newer in order to run the Redis Cluster test"
|
2014-04-25 00:01:41 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
$TCLSH tests/cluster/run.tcl $*
|