2012-02-09 05:24:59 +08:00
|
|
|
#!/bin/sh
|
2013-01-24 06:25:47 +08:00
|
|
|
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 ]
|
2011-07-15 23:20:57 +08:00
|
|
|
then
|
2013-01-24 06:25:47 +08:00
|
|
|
echo "You need tcl 8.5 or newer in order to run the Redis test"
|
2011-07-15 23:20:57 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
2018-07-30 21:43:21 +08:00
|
|
|
$TCLSH tests/test_helper.tcl "${@}"
|