blob: 95e3758e86ff3ed3110cf82c431434b88475ee63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#!/bin/bash
function check_is_run {
kill -0 ${PID}
if [ "$?" != 0 ]; then
echo "Error: process look like crashed"
cat logs/run.log
echo "Run with gdb"
cp ./src/manaplus ./logs/
cp -r core* ./logs/
COREFILE=$(find . -maxdepth 1 -name "core*" | head -n 1)
if [[ -f "$COREFILE" ]]; then
gdb -c "$COREFILE" ./src/manaplus -ex "thread apply all bt" -ex "set pagination 0" -batch
fi
exit 1
fi
}
function run {
./src/manaplus --enable-ipc --renderer=0 >logs/run.log 2>&1 &
export PID=$!
sleep 12s
}
function kill_app {
kill -s SIGTERM ${PID}
export RET=$?
sleep 10s
if [ "${RET}" != 0 ]; then
echo "Error: process not responsing to termination signal"
kill -s SIGKILL ${PID}
cat logs/run.log
exit 1
fi
}
function final_log {
export DATA=$(cat logs/run.log)
if [[ -z "${DATA}" ]]; then
echo "Error: no output"
exit 1
fi
cat logs/run.log
export DATA=$(grep "[.]cpp" logs/run.log)
if [[ -n "${DATA}" ]]; then
echo "Error: possible leak detected"
echo "${DATA}"
exit 1
fi
}
function send_command {
echo -n "$1" | nc 127.0.0.1 44007
}
run
check_is_run
send_command "/screenshot 1_"
sleep 5s
check_is_run
# send down key
send_command "/guikey -960 keyGUIDown"
sleep 5s
check_is_run
send_command "/screenshot 2_"
sleep 5s
check_is_run
# final delay
sleep 5s
kill_app
final_log
exit 0
|