Skip to content

Commit eb55cf7

Browse files
committed
Add "test/dependencies" dir and "godep restore" test
License: MIT Signed-off-by: Christian Couder <[email protected]>
1 parent 2963f48 commit eb55cf7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

test/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ test: test_expensive
2424
test_expensive:
2525
cd sharness && make TEST_EXPENSIVE=1
2626
cd 3nodetest && make
27+
cd dependencies && make
2728

2829
test_cheap:
2930
cd sharness && make

test/dependencies/Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
all: restore
3+
4+
restore:
5+
@echo "*** $@ ***"
6+
which godep
7+
cd ../.. && godep restore
8+
9+
.PHONY: all restore

0 commit comments

Comments
 (0)