mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
10 lines
160 B
Bash
Executable File
10 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
TCL=tclsh8.5
|
|
which $TCL
|
|
if [ "$?" != "0" ]
|
|
then
|
|
echo "You need '$TCL' in order to run the Redis test"
|
|
exit 1
|
|
fi
|
|
$TCL tests/test_helper.tcl $*
|