Lachim / redis

Automatically exported from code.google.com/p/redis
2 stars 0 forks source link

make test fails, github version #505

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I got the redis source fresh off github (redis-cli -v gives redis-cli 2.3.0 
(git:b8513c93) ), on Debian Linux.

Make install works fine (redis-server and redis-cli work fine), but, make test 
gives me the following error:

debian:~/redis/redis# make test
cd src && make test
make[1]: Entering directory `/root/redis/redis/src'
(cd ..; tclsh8.5 tests/test_helper.tcl --tags "" --file "")
/bin/sh: tclsh8.5: command not found
make[1]: *** [test] Error 127
make[1]: Leaving directory `/root/redis/redis/src'
make: *** [test] Error 2

It seems to require tclsh, is there any way to get rid of this dependency? 

Original issue reported on code.google.com by drnitinp...@gmail.com on 1 Apr 2011 at 6:37

GoogleCodeExporter commented 8 years ago
I solved this by installing tcl8.5 and tcl-dev. 
> apt-get install tcl-dev tcl8.5

Original comment by san...@gmail.com on 11 Nov 2011 at 5:11