mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-26 23:00:50 +00:00

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.
8 lines
173 B
Bash
Executable File
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
|