wesnoth/travis_after_failure.sh
Chris Beck e89d94d5cd travis requires all unit tests to pass. also refactor run_wml_tests.
With the change to --log-strict, it's not necessary to rerun with
strict mode off, so we can get rid of part of the old system.

Feel free to revert this is you don't want travis to require all
unit tests to pass as part of the build.
2014-05-20 16:38:18 -04:00

8 lines
173 B
Bash
Executable File

#!/bin/bash
if [ -f "errors.log" ]; then
echo -e "\n*** \n*"
echo "* Errors reported in wml unit tests, here is errors.log..."
echo -e "*\n*** \n"
cat errors.log
fi