Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
darshan
darshan
Commits
65f4ed71
Commit
65f4ed71
authored
May 11, 2021
by
Shane Snyder
Browse files
fix typo in pydarshan output
parent
147c469e
Changes
3
Hide whitespace changes
Inline
Side-by-side
darshan-util/pydarshan/darshan/backend/cffi_backend.py
View file @
65f4ed71
...
...
@@ -146,7 +146,7 @@ def log_get_exe(log):
log: handle returned by darshan.open
Return:
string: execut
e
able path and arguments
string: executable path and arguments
"""
exestr
=
ffi
.
new
(
"char[]"
,
4096
)
...
...
darshan-util/pydarshan/darshan/report.py
View file @
65f4ed71
...
...
@@ -929,7 +929,7 @@ class DarshanReport(object):
print
(
"Times: "
,
self
.
start_time
,
" to "
,
self
.
end_time
,
" (Duration "
,
tdelta
,
")"
,
sep
=
""
)
if
'exe'
in
self
.
metadata
:
print
(
"Execut
e
able: "
,
self
.
metadata
[
'exe'
],
sep
=
""
)
print
(
"Executable: "
,
self
.
metadata
[
'exe'
],
sep
=
""
)
if
'job'
in
self
.
metadata
:
print
(
"Processes: "
,
self
.
metadata
[
'job'
][
'nprocs'
],
sep
=
""
)
...
...
darshan-util/pydarshan/tests/test_report.py
View file @
65f4ed71
...
...
@@ -78,7 +78,7 @@ def test_info_contents(capsys):
report
.
info
()
captured
=
capsys
.
readouterr
()
expected_keys
=
[
'Times'
,
'Execut
e
able'
,
'Executable'
,
'Processes'
,
'JobID'
,
'UID'
,
...
...
Shane Snyder
@ssnyder
mentioned in merge request
!98 (merged)
·
May 11, 2021
mentioned in merge request
!98 (merged)
mentioned in merge request !98
Toggle commit list
Write
Preview
Markdown
is supported
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