Skip to content

Commit

Permalink
Fixed result printing with hidden error files
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hader committed Feb 16, 2024
1 parent 70949b0 commit 1d46fca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/regress/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,10 @@ echo "Fail: $fail"
if [ "$fail" -eq 0 ] ; then
code=0
else
for f in "$logdir"/*.error ; do
cat "$f"
echo
find "$logdir" -type f -name "*.error" -printf '%P\0' |
while read -rd $'\0' path; do
cat "$path"
echo
done
code=1
fi
Expand Down

0 comments on commit 1d46fca

Please sign in to comment.