wesnoth/wml_unit_tests
Chris Beck 5ac6e50934 add --timeout to wml_unit_tests script
use the timeout feature as appropriate for automatic testing
2014-04-08 18:11:22 -04:00

8 lines
236 B
Bash
Executable File

#!/bin/bash
set -e
set -o pipefail
./wesnoth -u unit_test_1 --timeout 20000 2> error.log
./wesnoth --validcache -u unit_test_2 --timeout 10000 2> error.log
./wesnoth --validcache -u unit_test_3 --timeout 10000 2> error.log
rm error.log