提交 7cb64801 编写于 作者: D Derek Parker

Improve single test run make targets for Linux

上级 d73569a7
......@@ -24,7 +24,15 @@ else
endif
test-proctl-run:
ifeq "$(UNAME)" "Darwin"
cd proctl && go test -c $(PREFIX)/proctl && codesign -s $(CERT) ./proctl.test && ./proctl.test -test.run $(RUN) && rm ./proctl.test
else
cd proctl && go test -run $(RUN)
endif
test-integration-run:
ifeq "$(UNAME)" "Darwin"
cd service/rest && go test -c $(PREFIX)/service/rest && codesign -s $(CERT) ./rest.test && ./rest.test -test.run $(RUN) && rm ./rest.test
else
cd service/rest && go test -run $(RUN)
endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册