summaryrefslogtreecommitdiff
path: root/abe-bisect-helper.sh
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2020-12-18 16:04:18 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2020-12-18 16:04:18 +0000
commit43b6a6a9422579ef3491269ef380401b2f1067e8 (patch)
tree60da7b81b1321c4a5e01fad62da584a17934803e /abe-bisect-helper.sh
parent4654e5907304cf0aabe9522face19c35bef57679 (diff)
abe-bisect.sh: Fix path to stage2 build dir after recent ABE changes
ABE now uses the component name to prefix the build dir, use '*' as a convenience. Change-Id: Iebc7a5feadcda6ee91fa5c088eaec8992f83d495
Diffstat (limited to 'abe-bisect-helper.sh')
-rwxr-xr-xabe-bisect-helper.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/abe-bisect-helper.sh b/abe-bisect-helper.sh
index 328fbe9f..76469d04 100755
--- a/abe-bisect-helper.sh
+++ b/abe-bisect-helper.sh
@@ -56,7 +56,7 @@ ${ABE}/abe.sh --target ${TARGET} \
--excludecheck gdb >& gcc-${REV}.log
[ $? -ne 0 ] && exit 125
-sums=`find builds/*/${TARGET}/gcc.git~master_rev_${REV}-stage2/ -name "*.sum"`
+sums=`find builds/*/${TARGET}/*gcc.git~master_rev_${REV}-stage2/ -name "*.sum"`
nb_fail=$(cat $sums | grep -wc FAIL)
[ ${nb_fail} -gt ${GOODFAIL} ] && exit 1 # More failures than GOOD, this is a bad one