Commit c51b6db0 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

Merge pull request #429 from jbenet/makefile-all-commits

Makefile: add test_all_commits
parents 72dd3718 b0e251bd
......@@ -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 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