diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-05-14 17:54:27 +0200 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-05-14 17:54:27 +0200 |
commit | 628e1c6910c00205da36e3ea1ddc4a4c74cfc857 (patch) | |
tree | 49bf241c4386d710e986a6b7ebae9213fc5ec70f /Makefile | |
parent | 239515bccea55b34ba5d706741894b605cb6b3d1 (diff) | |
download | redis-628e1c6910c00205da36e3ea1ddc4a4c74cfc857.tar.gz |
update makefile to use the new test suite
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -13,8 +13,6 @@ else endif CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF) DEBUG?= -g -rdynamic -ggdb -HOST?= 127.0.0.1 -PORT?= 6379 OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o @@ -89,8 +87,8 @@ dep: staticsymbols: tclsh utils/build-static-symbols.tcl > staticsymbols.h -test: - tclsh8.5 test-redis.tcl -p $(PORT) -h $(HOST) +test: redis-server + tclsh8.5 test/test_helper.tcl bench: ./redis-benchmark |