Better output for failed CI builds

This commit is contained in:
Hackerpilot 2015-08-26 02:53:10 -07:00
parent 3fd36a6d0b
commit 5d361c5a5a
1 changed files with 4 additions and 0 deletions

View File

@ -42,5 +42,9 @@ if [ $fail_count -eq 0 ]; then
echo -e "${GREEN}${pass_count} tests passed and ${fail_count} failed.${NORMAL}"
else
echo -e "${RED}${pass_count} tests passed and ${fail_count} failed.${NORMAL}"
echo -e "${RED}STDERR:${NORMAL}"
cat stderr.txt
echo -e "${RED}STDOUT:${NORMAL}"
cat stdout.txt
exit 1
fi