summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-12-12 10:30:04 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-12-12 10:30:04 +0000
commit3cf7d93605f1b2289cb46a5d26b0575b5a272f54 (patch)
treea58dc44ae23c23571c53953487e5c8a2c073788c
parent12fc3af06712392a56156314942e0cc9ba311e4a (diff)
round-robin-bisect.sh: Process interesting commits in reverse order
Checking more recent bad/good commits first should cut down on bisection time. Change-Id: I97899c569eae5ea6679d152f630b5383089a6282
-rwxr-xr-xround-robin-bisect.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/round-robin-bisect.sh b/round-robin-bisect.sh
index 0382a151..7a48bf0e 100755
--- a/round-robin-bisect.sh
+++ b/round-robin-bisect.sh
@@ -389,7 +389,7 @@ while [ x"$(get_first_bad </dev/null)" = x"" ] && read -a arr; do
git bisect bad
fi
) </dev/null
-done < ../interesting-commits/$current_project
+done < <(tac ../interesting-commits/$current_project)
if $verbose; then set -x; fi
if [ x"$(get_first_bad)" = x"" ]; then