mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-02 22:31:15 +00:00
8 lines
236 B
Bash
Executable File
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
|