blob: 88d7ccc634f43147feb3e0ca02d174eb4dc5085a (
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
|
#!/bin/bash
source ./.tools/init.sh
clientdata_init
aptget_update
aptget_install git-core libxml2-utils python python-pil python-soundfile
rm -rf tools
git clone https://git.themanaworld.org/specing/tools.git tools
git -C tools checkout sync_EVOL_cb73c414
cd tools/testxml
./xsdcheck.sh
check_error $?
export RES=$(cat errors.txt)
if [[ -n "${RES}" ]]; then
echo "xml check failed" >../../clientdata/shared/error.log
cat errors.txt >>../../clientdata/shared/error.log
cat ../../clientdata/shared/error.log
exit 1
fi
echo >../../clientdata/shared/error.log
./testxml.py >../../clientdata/shared/error.log
res="$?"
cat ../../clientdata/shared/error.log
if [ "$res" != 0 ]; then
echo "test xml error"
exit 1
fi
echo >../../clientdata/shared/error.log
|