1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-27 07:57:30 +08:00

test/Makefile

This commit is contained in:
Juan Batiz-Benet
2015-01-07 07:29:52 -08:00
parent 28cf220de1
commit 2faafa8478

View File

@ -19,7 +19,14 @@ bin/random: $(RANDOM_SRC)/**/*.go
bin/ipfs: $(IPFS_ROOT)/**/*.go
go build -o bin/ipfs $(IPFS_CMD)
test_sharness:
test: test_expensive
test_expensive:
cd sharness && make TEST_EXPENSIVE=1
cd 3nodetest && make
test_cheap:
cd sharness && make
cd 3nodetest && make
.PHONY: all clean