diff options
-rwxr-xr-x | bin/reproducible_build.sh | 5 | ||||
-rwxr-xr-x | bin/reproducible_common.sh | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 79dfef90..88841651 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -424,6 +424,11 @@ call_diffoscope_on_changes_files() { dbd_timeout $TIMEOUT ;; *) + # Process killed by signal exits with 128+${signal number}. + # 31 = SIGSYS = maximum signal number in signal(7) + if (( $RESULT > 128 )) && (( $RESULT <= 128+31 )); then + RESULT="$RESULT (SIG$(kill -l $(($RESULT - 128))))" + fi handle_ftbr "Something weird happened when running $DIFFOSCOPE (which exited with $RESULT) and I don't know how to handle it" irc_message debian-reproducible "Something weird happened when running $DIFFOSCOPE (which exited with $RESULT) and I don't know how to handle it. Please check $RBUILDLOG and $DEBIAN_URL/$SUITE/$ARCH/$SRCPACKAGE" ;; diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 0daac6b8..7a4d523d 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -615,6 +615,11 @@ call_diffoscope() { fi ;; *) + # Process killed by signal exits with 128+${signal number}. + # 31 = SIGSYS = maximum signal number in signal(7) + if (( $RESULT > 128 )) && (( $RESULT <= 128+31 )); then + RESULT="$RESULT (SIG$(kill -l $(($RESULT - 128))))" + fi msg="$(date -u) - Something weird happened when running $DIFFOSCOPE on $1/$2 (which exited with $RESULT) and I don't know how to handle it." ;; esac |