3 # Print output of failing tests
6 . ${0%/*}/lib-travisci.sh
8 # Tracing executed commands would produce too much noise in the loop below.
11 if ! ls t/test-results/*.exit >/dev/null 2>/dev/null
13 echo "Build job failed before the tests could have been run"
17 for TEST_EXIT in t/test-results/*.exit
19 if [ "$(cat "$TEST_EXIT")" != "0" ]
21 TEST_OUT="${TEST_EXIT%exit}out"
22 echo "------------------------------------------------------------------------"
23 echo "$(tput setaf 1)${TEST_OUT}...$(tput sgr0)"
24 echo "------------------------------------------------------------------------"