Skip to content

Commit

Permalink
test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fatedier committed May 17, 2016
1 parent c680d87 commit ea32308
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ gotest:
godep go test -v ./src/...

alltest:
cd ./test && sh ./run_test.sh && cd -
cd ./test && ./run_test.sh && cd -
godep go test -v ./src/...
godep go test -v ./test/func_test.go
cd ./test && sh ./clean_test.sh && cd -
cd ./test && ./clean_test.sh && cd -

clean:
rm -f ./bin/frpc
rm -f ./bin/frps
rm -f ./test/bin/echo_server
rm -f ./test/bin/http_server
cd ./test && sh ./clean_test.sh && cd -
cd ./test && ./clean_test.sh && cd -

0 comments on commit ea32308

Please sign in to comment.