From c6f4ce66cffe2a63135dcd44bd53ac9554a870d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20F=C3=BCl=C3=B6p?= Date: Mon, 8 Jul 2019 23:15:49 +0200 Subject: [PATCH] address review feedback --- tests/test-runner/include/logapi.shlib | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-runner/include/logapi.shlib b/tests/test-runner/include/logapi.shlib index d5051422e89..cd7982a94a0 100644 --- a/tests/test-runner/include/logapi.shlib +++ b/tests/test-runner/include/logapi.shlib @@ -198,11 +198,11 @@ function log_neg_expect elif (( $status == 127 )); then print -u2 $($out) _printerror "$@" "unexpectedly exited $status (File not found)" - # bus error - core dump + # bus error - core dump (256+signal, SIGBUS=7) elif (( $status == 263 )); then print -u2 $($out) _printerror "$@" "unexpectedly exited $status (Bus Error)" - # segmentation violation - core dump + # segmentation violation - core dump (256+signal, SIGSEGV=11) elif (( $status == 267 )); then print -u2 $($out) _printerror "$@" "unexpectedly exited $status (SEGV)"