Commit 31d07f0f authored by Christian Couder's avatar Christian Couder

Add "test/dependencies" dir and "godep restore" test

License: MIT
Signed-off-by: default avatarChristian Couder <chriscool@tuxfamily.org>
parent 343940da
......@@ -24,6 +24,7 @@ test: test_expensive
test_expensive:
cd sharness && make TEST_EXPENSIVE=1
cd 3nodetest && make
cd dependencies && make
test_cheap:
cd sharness && make
......
all: restore
restore:
@echo "*** $@ ***"
which godep
mkdir -p tmp_gopath
OLD_GOPATH="$$GOPATH"
export GOPATH=$$(pwd)/tmp_gopath
cd ../..
godep restore
cd -
rm -rf tmp_gopath
export GOPATH="$$OLD_GOPATH"
.PHONY: all restore
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment