From fb765a0ae39e07e58aa822dd755549de2be89d2d Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 15 Apr 2010 18:32:44 +0200 Subject: ability to select port/host from make test --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 995bd8bc7..aea43f1da 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,8 @@ 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 BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o @@ -79,7 +81,7 @@ staticsymbols: tclsh utils/build-static-symbols.tcl > staticsymbols.h test: - tclsh test-redis.tcl + tclsh test-redis.tcl -p $(PORT) -h $(HOST) bench: ./redis-benchmark -- cgit v1.2.1