diff options
Diffstat (limited to 'gitlab-ci/clientdata/testxml.sh')
-rwxr-xr-x | gitlab-ci/clientdata/testxml.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gitlab-ci/clientdata/testxml.sh b/gitlab-ci/clientdata/testxml.sh deleted file mode 100755 index 9295ec3..0000000 --- a/gitlab-ci/clientdata/testxml.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -source ./tools/gitlab-ci/init.sh - -clientdata_init - -cd tools/testxml - -./xsdcheck.sh -export RES=$(cat errors.txt) -if [[ -n "${RES}" ]]; then - echo "xml check failed" >../../clientdata/shared/error.log - echo ${RES} >>../../clientdata/shared/error.log - cat ../../clientdata/shared/error.log - exit 1 -fi - -echo >../../clientdata/shared/error.log -./testxml.py silent >../../clientdata/shared/error.log -if [ "$?" != 0 ]; then - echo "test xml error" - cat ../../clientdata/shared/error.log - exit 1 -fi - -echo >../../clientdata/shared/error.log |