Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Charles Burton
Gaudi
Commits
ae90468b
Commit
ae90468b
authored
Apr 01, 2016
by
Marco Clemencic
Browse files
fixed uname in test annotations from CTestXML2HTML
parent
5c34c43e
Changes
1
Hide whitespace changes
Inline
Side-by-side
GaudiPolicy/scripts/CTestXML2HTML
View file @
ae90468b
...
...
@@ -405,7 +405,11 @@ def updateAnnotations(site,Testing,outputTemp,annotationsList):
"end_ts"
:
int
(
cleanWebChar
(
Testing
.
find
(
"EndTestTime"
).
text
or
'0'
)),
"start_time"
:
cleanWebChar
(
Testing
.
find
(
"StartDateTime"
).
text
),
"start_ts"
:
int
(
cleanWebChar
(
Testing
.
find
(
"StartTestTime"
).
text
or
'0'
)),
"uname"
:
cleanWebChar
(
site
.
get
(
"OSName"
)
+
site
.
get
(
"Name"
)
+
site
.
get
(
"OSRelease"
)
+
site
.
get
(
"OSVersion"
)
+
site
.
get
(
"OSPlatform"
))
,
"uname"
:
cleanWebChar
(
' '
.
join
([
site
.
get
(
"OSName"
),
site
.
get
(
"Name"
),
site
.
get
(
"OSRelease"
),
site
.
get
(
"OSVersion"
),
site
.
get
(
"OSPlatform"
)])),
"version"
:
[
cleanWebChar
(
site
.
get
(
"Generator"
))]
}
if
site
.
get
(
"qmtest.run.userid"
)
is
not
None
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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