mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 09:17:20 +00:00
10 lines
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
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 $*
|