From 39541deab46ccd1af50c73275550580437861af7 Mon Sep 17 00:00:00 2001 From: Kai Engert Date: Tue, 5 Dec 2017 18:04:03 +0100 Subject: bug 1423145, NSS buildbot ABI check fails, reason unknown, need more detailed error logging, r=fkiefer --- automation/buildbot-slave/build.sh | 3 +++ 1 file changed, 3 insertions(+) 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 -- cgit v1.2.1