Test by Another Past 50 Commits

This commit is contained in:
Lup Yuen Lee 2024-10-13 12:05:02 +08:00
parent e3ed3f20c0
commit d76f819d5c

View file

@ -50,6 +50,19 @@ function commit_test() {
for commit in $(git log -50 --pretty=format:"%H")
do
echo Testing Commit $commit
git reset --hard $commit
sleep 5
test_once $commit
done
}
## Test by Another Past 50 Commits
function commit_test_again() {
for commit in $(git log -50 --pretty=format:"%H")
do
echo Testing Commit $commit
git reset --hard $commit
sleep 5
test_once $commit
done
}