summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Engert <kaie@kuix.de>2017-12-05 18:04:03 +0100
committerKai Engert <kaie@kuix.de>2017-12-05 18:04:03 +0100
commit39541deab46ccd1af50c73275550580437861af7 (patch)
tree1f66c6c88c6a7373f1c185cb454afa784b5962d5
parent77b2c6d840c28e605b7e02fc0c61197e1845ad51 (diff)
downloadnss-hg-39541deab46ccd1af50c73275550580437861af7.tar.gz
bug 1423145, NSS buildbot ABI check fails, reason unknown, need more detailed error logging, r=fkiefer
-rwxr-xr-xautomation/buildbot-slave/build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/automation/buildbot-slave/build.sh b/automation/buildbot-slave/build.sh
index 7675136dd..844254dae 100755
--- a/automation/buildbot-slave/build.sh
+++ b/automation/buildbot-slave/build.sh
@@ -271,15 +271,18 @@ check_abi()
> ${HGDIR}/nss/automation/abi-check/new-report-$SO.txt
if [ $? -ne 0 ]; then
ABI_PROBLEM_FOUND=1
+ print_log "FAILED to run abidiff {$PREVDIST , $NEWDIST} for $SO, or failed writing to ${HGDIR}/nss/automation/abi-check/new-report-$SO.txt"
fi
if [ ! -f ${HGDIR}/nss/automation/abi-check/expected-report-$SO.txt ]; then
ABI_PROBLEM_FOUND=1
+ print_log "FAILED to access report file: ${HGDIR}/nss/automation/abi-check/expected-report-$SO.txt"
fi
diff -wB -u ${HGDIR}/nss/automation/abi-check/expected-report-$SO.txt \
${HGDIR}/nss/automation/abi-check/new-report-$SO.txt >> ${ABI_REPORT}
if [ ! -f ${ABI_REPORT} ]; then
ABI_PROBLEM_FOUND=1
+ print_log "FAILED to compare exepcted and new report: ${HGDIR}/nss/automation/abi-check/new-report-$SO.txt"
fi
done