summaryrefslogtreecommitdiff
path: root/.tools/testxml.sh
blob: 9e94e75336c74fb8f698503bae26ac7ee2d12f18 (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
#!/bin/bash

source ./.tools/init.sh

clientdata_init

aptget_update
aptget_install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python python-pyvorbis python-ogg python-pil
rm -rf tools
gitclone https://gitlab.com/evol evol-tools.git tools

cd tools/testxml

./xsdcheck.sh
check_error $?
export RES=$(cat errors.txt)
if [[ -n "${RES}" ]]; then
    echo "xml check failed" >../../client-data/shared/error.log
    echo ${RES} >>../../client-data/shared/error.log
    cat ../../client-data/shared/error.log
    exit 1
fi

echo >../../client-data/shared/error.log
./testxml.py silent >../../client-data/shared/error.log
res="$?"
cat ../../client-data/shared/error.log
if [ "$res" != 0 ]; then
    echo "test xml error"
    exit 1
fi

echo >../../client-data/shared/error.log