2017-09-10 17:44:28 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Print output of failing tests
|
|
|
|
#
|
|
|
|
|
|
|
|
. ${0%/*}/lib-travisci.sh
|
|
|
|
|
2017-12-27 19:36:00 +03:00
|
|
|
# Tracing executed commands would produce too much noise in the loop below.
|
|
|
|
set +x
|
|
|
|
|
2017-09-10 17:44:28 +03:00
|
|
|
for TEST_EXIT in t/test-results/*.exit
|
2017-09-11 04:18:29 +03:00
|
|
|
do
|
|
|
|
if [ "$(cat "$TEST_EXIT")" != "0" ]
|
|
|
|
then
|
|
|
|
TEST_OUT="${TEST_EXIT%exit}out"
|
|
|
|
echo "------------------------------------------------------------------------"
|
|
|
|
echo "$(tput setaf 1)${TEST_OUT}...$(tput sgr0)"
|
|
|
|
echo "------------------------------------------------------------------------"
|
|
|
|
cat "${TEST_OUT}"
|
|
|
|
fi
|
2017-09-10 17:44:28 +03:00
|
|
|
done
|