12a6a448f4
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/git#58dc6bb36a79726ca510aab470bf32d8e9876689
14 lines
307 B
Bash
14 lines
307 B
Bash
#!/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
|