mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-28 12:56:36 +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.
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
./run_wml_tests -u -w
|
|
if [ "$?" -ne 0 ]; then
|
|
echo -e "\n*** \n*"
|
|
echo "* Rerunning tests to get error messages.."
|
|
echo -e "*\n*** \n"
|
|
./run_wml_tests -u -w -s
|
|
fi
|