You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
307 B
14 lines
307 B
#!/bin/bash
|
|
|
|
shopt -s failglob
|
|
|
|
# Print output from failing tests
|
|
printf -v sep "%0.s-" {1..80}
|
|
for exit_file in t/test-results/*.exit; do
|
|
[ "$(< "$exit_file")" -eq 0 ] && continue
|
|
out_file="${exit_file%exit}out"
|
|
printf '\n%s\n%s\n%s\n' "$sep" "$out_file" "$sep"
|
|
cat "$out_file"
|
|
done
|
|
exit 1
|