No functional change. Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
25 lines
365 B
Bash
Executable file
25 lines
365 B
Bash
Executable file
#!/bin/sh -e
|
|
# Acts of god test for Empire
|
|
|
|
if [ $# -ne 1 ]
|
|
then echo "Usage: $0 SRCDIR" >&2; exit 1
|
|
fi
|
|
|
|
srcdir="$1"
|
|
|
|
. "$srcdir"/tests/test-common.sh
|
|
|
|
create_sandbox
|
|
cat >>$econfig <<EOF
|
|
WORLD_X 24
|
|
WORLD_Y 16
|
|
GODNEWS 1
|
|
EOF
|
|
|
|
begin_test "$srcdir"/tests/actofgod/setup-POGO
|
|
|
|
perl "$srcdir"/tests/actofgod/geninput.pl | feed_input POGO peter
|
|
|
|
end_test
|
|
|
|
cmp_logs_xdump
|