Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Charles Burton
Gaudi
Commits
aeada68b
Commit
aeada68b
authored
Feb 14, 2019
by
Gitlab CI
Committed by
kreczko
Feb 14, 2019
Browse files
Fixed formatting
patch generated by
https://gitlab.cern.ch/kreczko/Gaudi/-/jobs/3322407
parent
6594f136
Changes
4
Hide whitespace changes
Inline
Side-by-side
GaudiPolicy/qmtest_classes/GaudiTest.py
View file @
aeada68b
...
...
@@ -1541,6 +1541,7 @@ class GaudiExeTest(ExecTestBase):
if
a
not
in
positional
and
a
not
in
kwargs
:
kwargs
[
a
]
=
self
.
extra_args
[
a
]
return
self
.
callable
(
*
args
,
**
kwargs
)
# local names to be exposed in the script
exported_symbols
=
{
"self"
:
...
...
cmake/cmakeLogToCacheGrind.py
View file @
aeada68b
...
...
@@ -10,7 +10,9 @@ import sys
def
usage
():
print
(
"Invalid arguments
\n
Proper syntax is :
\n
%s <log file> <callgrind file>"
%
sys
.
argv
[
0
])
print
(
"Invalid arguments
\n
Proper syntax is :
\n
%s <log file> <callgrind file>"
%
sys
.
argv
[
0
])
if
len
(
sys
.
argv
)
!=
3
:
...
...
cmake/modules/scan_dict_deps.py
View file @
aeada68b
...
...
@@ -16,8 +16,10 @@ def find_file(filename, searchpath):
if
isabs
(
filename
):
return
filename
if
exists
(
filename
)
else
None
try
:
return
six
.
next
(
six
.
moves
.
filter
(
exists
,
six
.
moves
.
map
(
lambda
x
:
join
(
x
,
filename
),
searchpath
)))
return
six
.
next
(
six
.
moves
.
filter
(
exists
,
six
.
moves
.
map
(
lambda
x
:
join
(
x
,
filename
),
searchpath
)))
except
StopIteration
:
return
None
...
...
@@ -90,7 +92,9 @@ def main():
if
new_deps
!=
old_deps
:
# write it only if it has changed
open
(
output
,
'w'
).
write
(
new_deps
)
if
old_deps
and
not
opts
.
for_make
:
print
(
'info: dependencies changed: next build will trigger a reconfigure'
)
print
(
'info: dependencies changed: next build will trigger a reconfigure'
)
if
__name__
==
'__main__'
:
...
...
cmake/tests/cmake_coverage.py
View file @
aeada68b
...
...
@@ -100,5 +100,6 @@ if __name__ == '__main__':
if
touched_count
==
active_count
:
print
(
' coverage 100%'
)
else
:
print
(
' coverage %3d%%, missed: %s'
%
(
float
(
touched_count
)
/
active_count
*
100
,
', '
.
join
(
ranges
)))
print
(
' coverage %3d%%, missed: %s'
%
(
float
(
touched_count
)
/
active_count
*
100
,
', '
.
join
(
ranges
)))
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