1
0
mirror of https://github.com/fluencelabs/redis synced 2025-06-11 16:21:21 +00:00
Files
deps
src
tests
utils
.gitignore
BUGS
CONTRIBUTING
COPYING
Changelog
INSTALL
Makefile
README
TODO
redis.conf
runtest
redis/runtest

10 lines
162 B
Plaintext
Raw Normal View History

#!/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 $*