test/Makefile
Juan Batiz-Benet committed
Jan 7, 2015 at 07:29 UTC
2faafa84785f8aae5875b15a14f5c0eaaa1fdbeb
1 file changed
+8
-1
test/Makefile
+8
-1
@@ -19,7 +19,14 @@ bin/random: $(RANDOM_SRC)/**/*.go
19
bin/ipfs: $(IPFS_ROOT)/**/*.go
20
go build -o bin/ipfs $(IPFS_CMD)
21
22
-test_sharness:
22
+test: test_expensive
23
+
24
+test_expensive:
25
+ cd sharness && make TEST_EXPENSIVE=1
26
+ cd 3nodetest && make
27
+
28
+test_cheap:
29
cd sharness && make
30
+ cd 3nodetest && make
31
32
.PHONY: all clean