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