2012-02-08 22:24:59 +01:00
|
|
|
#!/bin/sh
|
2021-09-15 18:04:31 +08:00
|
|
|
TCL_VERSIONS="8.5 8.6 8.7"
|
2013-01-24 09:25:47 +11:00
|
|
|
TCLSH=""
|
|
|
|
|
|
|
|
for VERSION in $TCL_VERSIONS; do
|
|
|
|
TCL=`which tclsh$VERSION 2>/dev/null` && TCLSH=$TCL
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -z $TCLSH ]
|
2011-07-15 17:20:57 +02:00
|
|
|
then
|
2024-04-03 19:17:38 -04:00
|
|
|
echo "You need tcl 8.5 or newer in order to run the Valkey test"
|
2011-07-15 17:20:57 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2018-07-30 16:43:21 +03:00
|
|
|
$TCLSH tests/test_helper.tcl "${@}"
|