mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-05-20 11:31:28 +02:00
52635: show file name when test has crashed
This commit is contained in:
parent
4fb96cc639
commit
145397b6dc
2 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
2024-03-02 Bart Schaefer <schaefer@zsh.org>
|
||||
|
||||
* JunT.: 52635: Test/runtests.zsh: show file name when crashed
|
||||
|
||||
* 52612: Src/parse.c, Src/subst.c, Src/utils.c: change the %l
|
||||
replacment of zwarning() et al. to do literal string output;
|
||||
change previous uses to %s and use new %l for ${var?$error}
|
||||
|
|
|
@ -15,6 +15,7 @@ for file in "${(f)ZTST_testlist}"; do
|
|||
(( skipped++ ))
|
||||
elif (( $retval )); then
|
||||
(( failure++ ))
|
||||
(( $retval > 128 )) && print "$file: failed: SIG$signals[$retval - 127]."
|
||||
else
|
||||
(( success++ ))
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue