Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LI - Lawful Interception
Trial
Commits
f2339809
Commit
f2339809
authored
Oct 22, 2021
by
canterburym
Browse files
Updating tests
parent
d1ecf9d8
Pipeline
#9420
passed with stage
in 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
testing/check_xsd.py
View file @
f2339809
...
...
@@ -134,6 +134,7 @@ if __name__ == '__main__':
syntaxErrors
=
0
print
(
"============================="
)
print
(
"XSD syntax checks:"
)
print
(
"-----------------------------"
)
for
file
in
includeFileList
:
...
...
@@ -148,9 +149,12 @@ if __name__ == '__main__':
if
(
syntaxErrors
>
0
):
print
(
f
"
{
syntaxErrors
}
syntax errors detected"
)
exit
(
syntaxErrors
)
else
:
print
(
"0 syntax errors detected"
)
results
,
schemaDict
=
ValidateXSDFiles
(
includeFileList
)
print
(
"============================="
)
print
(
"XSD build checks:"
)
print
(
"-----------------------------"
)
errorCount
=
0
...
...
@@ -171,6 +175,7 @@ if __name__ == '__main__':
if
(
errorCount
>
0
):
exit
(
errorCount
)
print
(
"============================="
)
print
(
"Instance document checks"
)
print
(
"-----------------------------"
)
errorCount
=
0
...
...
@@ -184,4 +189,5 @@ if __name__ == '__main__':
errorCount
+=
1
print
(
f
"
{
instanceDoc
}
:
{
str
(
ex
)
}
"
)
print
(
f
"
{
errorCount
}
instance doc errors detected"
)
print
(
"============================="
)
exit
(
errorCount
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment