summaryrefslogtreecommitdiff
path: root/abe-bisect.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2017-06-15 09:04:14 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2017-06-15 09:04:57 +0000
commit561c60e6ce4309f1b523a00b276b30e9ec97e36a (patch)
treed9fb26ab7eb5a378503750f86f966045bf707038 /abe-bisect.sh
parent67b567b1e3c0b186929ef4409f0205e06896ffa2 (diff)
abe-bisect.sh: cleanup before pull
Change-Id: I7b3c70d7f25ea5b89ec857686d336ff845e839ef
Diffstat (limited to 'abe-bisect.sh')
-rwxr-xr-xabe-bisect.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/abe-bisect.sh b/abe-bisect.sh
index aed2f2eb..5c269e09 100755
--- a/abe-bisect.sh
+++ b/abe-bisect.sh
@@ -1,4 +1,5 @@
#!/bin/bash
+set -x
# This script is a helper to bisect GCC regressions.
# Inputs (as env. variables):
@@ -52,9 +53,9 @@ ${ABE}/abe.sh --target $TARGET gcc=gcc.git~master --checkout all
cd snapshots/gcc.git~master
-git pull # Workaround abe bug, where it can checkout an outdated version
git bisect reset
git reset --hard
+git pull # Workaround abe bug, where it can checkout an outdated version
git bisect start --no-checkout
GOODSHA1=`git log --format=format:"%H" --grep=trunk@${GOOD} master`