提交 b0e251bd 作者: Juan Batiz-Benet

Makefile: add test_all_commits

上级 72dd3718
......@@ -28,3 +28,9 @@ test_sharness:
test_sharness_expensive:
cd test/ && make TEST_EXPENSIVE=1
test_all_commits:
@echo "testing all commits between origin/master..HEAD"
@echo "WARNING: this will 'git rebase --exec'."
@test/bin/continueyn
GIT_EDITOR=true git rebase -i --exec "make test" origin/master
#!/bin/sh
# Author: Juan Batiz-Benet <juan@benet.ai>
# MIT LICENSED
read -p "continue? [y/N] "
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
exit 0
fi
exit -1
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论