2017-09-10 16:44:28 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Print output of failing tests
|
|
|
|
#
|
|
|
|
|
|
|
|
. ${0%/*}/lib-travisci.sh
|
|
|
|
|
2017-12-27 17:36:00 +01:00
|
|
|
# Tracing executed commands would produce too much noise in the loop below.
|
|
|
|
set +x
|
|
|
|
|
2017-12-27 17:36:03 +01:00
|
|
|
if ! ls t/test-results/*.exit >/dev/null 2>/dev/null
|
|
|
|
then
|
|
|
|
echo "Build job failed before the tests could have been run"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2017-09-10 16:44:28 +02:00
|
|
|
for TEST_EXIT in t/test-results/*.exit
|
2017-09-11 03:18:29 +02: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 16:44:28 +02:00
|
|
|
done
|