Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
orchestrator
Commits
31ae3e22
Commit
31ae3e22
authored
May 19, 2018
by
Thanassis Tsiodras
Browse files
Mantis #775
Depend on proper XML escaping from the Ellidiss GUI and then from ASN1SCC.
parent
0cae10e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
orchestrator/taste-orchestrator.py
View file @
31ae3e22
...
...
@@ -22,6 +22,7 @@ import time
import
glob
import
logging
import
multiprocessing
import
xml.sax.saxutils
# File handle where build log (log.txt) is
g_log
=
None
...
...
@@ -504,7 +505,7 @@ def CheckDirectives(baseDir):
while
True
:
findCO
=
re
.
match
(
pattern
,
data
)
if
findCO
:
opt
=
findCO
.
group
(
1
)
opt
=
xml
.
sax
.
saxutils
.
unescape
(
findCO
.
group
(
1
)
)
data
=
findCO
.
group
(
2
)
partition
=
g_fromFunctionToPartition
[
baseDir
]
target
.
setdefault
(
partition
,
[]).
append
(
opt
)
...
...
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