blob: 528c74d9c1c0cc695075c8374cbe1c9433e4144a (
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
|
#!/bin/bash
export SDL_VIDEODRIVER="dummy"
ulimit -c unlimited -S
ulimit -c unlimited
rm -rf core*
echo "clean config runs"
n=0
while true; do
echo "run test ${n}"
rm "${HOME}/.config/mana/mana/config.xml"
rm "/root/.config/mana/mana/config.xml"
./tools/ci/scripts/runtest.sh
if [ "$?" != 0 ]; then
exit 1
fi
if [[ $n -ge 5 ]]; then
break
fi
sleep 5s
n=$((n+1))
done
echo "existing config runs"
n=0
while true; do
echo "run test ${n}"
./tools/ci/scripts/runtest.sh
if [ "$?" != 0 ]; then
exit 1
fi
if [[ $n -ge 5 ]]; then
exit 0
fi
sleep 5s
n=$((n+1))
done
|