mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-26 10:09:49 +00:00
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
|