summaryrefslogtreecommitdiff
path: root/runtest
blob: 0eb384c24dc47df446dd8da3960dbbaaf284a863 (plain)
1
2
3
4
5
6
7
8
9
#!/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 $*