summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-redis/redis/Makefile
blob: 50fdc55a1a77111c02908644278e15dd409a4e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: testdeps
	go test ./...
	go test ./... -short -race
	go vet

testdeps: testdata/redis/src/redis-server

bench: testdeps
	go test ./... -test.run=NONE -test.bench=. -test.benchmem

.PHONY: all test testdeps bench

testdata/redis:
	mkdir -p $@
	wget -qO- https://github.com/antirez/redis/archive/unstable.tar.gz | tar xvz --strip-components=1 -C $@

testdata/redis/src/redis-server: testdata/redis
	sed -i 's/libjemalloc.a/libjemalloc.a -lrt/g' $</src/Makefile
	cd $< && make all