mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-26 21:07:45 +08:00
40 lines
710 B
Makefile
40 lines
710 B
Makefile
# Run tests
|
|
#
|
|
# Copyright (c) 2014 Christian Couder
|
|
# MIT Licensed; see the LICENSE file in this repository.
|
|
#
|
|
|
|
# NOTE: run with TEST_VERBOSE=1 for verbose sharness tests.
|
|
|
|
T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
|
|
BINS = bin/random bin/ipfs
|
|
SHARNESS = lib/sharness/sharness.sh
|
|
IPFS_ROOT = ../..
|
|
|
|
all: clean deps $(T) aggregate
|
|
|
|
clean:
|
|
@echo "*** $@ ***"
|
|
-rm -rf test-results
|
|
-rm -rf bin/ipfs
|
|
|
|
$(T):
|
|
@echo "*** $@ ***"
|
|
./$@
|
|
|
|
aggregate:
|
|
@echo "*** $@ ***"
|
|
lib/test-aggregate-results.sh
|
|
|
|
deps: $(SHARNESS) $(BINS)
|
|
|
|
$(SHARNESS):
|
|
@echo "*** installing $@ ***"
|
|
lib/install-sharness.sh
|
|
|
|
bin/%: $(IPFS_ROOT)/**/*.go
|
|
@echo "*** installing $@ ***"
|
|
cd .. && make $@
|
|
|
|
.PHONY: all clean $(T) aggregate
|