Skip to content

Commit 4e6b2b2

Browse files
wkliaoroblatham00
authored andcommitted
CI: add some error checkings and print messages
1 parent 976fcc6 commit 4e6b2b2

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

darshan-test/python_runtime_tests.py

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,34 @@ def test_os_dup(tmpdir):
268268
# numpy will read a bunch of python files but we only care about the
269269
# numpy file
270270
target_filename = "single_array.npy"
271-
report = darshan.DarshanReport(path_to_log, filter_patterns=[target_filename], filter_mode='include')
271+
272272
# common stuff done. Real check for the "dup via fcntl" issue
273273

274274
io_module = "POSIX"
275275
key = "POSIX_BYTES_WRITTEN"
276-
value = report.records[io_module].to_dict()[0]["counters"][key]
277-
print(f"key '{key}' has value of '{value}'")
278-
assert value == 928
276+
277+
# check if log file exists
278+
if not os.path.isfile(path_to_log) :
279+
print(f"Darshan log file '{path_to_log}' does not exist")
280+
else :
281+
print(f"Darshan log file '{path_to_log}'")
282+
283+
try:
284+
with darshan.DarshanReport(path_to_log, filter_patterns=[target_filename], filter_mode='include') as report:
285+
try:
286+
records = report.records[io_module].to_dict()
287+
if len(records) > 0:
288+
try:
289+
value = records[0]["counters"][key]
290+
print(f"key '{key}' has value of '{value}'")
291+
assert value == 528
292+
except KeyError:
293+
print(f"Error: record key '{key}' was not found.")
294+
else:
295+
print(f"I/O module '{io_module}' for file '{target_filename}' has no record")
296+
except KeyError:
297+
print(f"I/O module '{io_module}' not found")
298+
except KeyError:
299+
print(f"I/O module '{io_module}' not found")
300+
except RuntimeError:
301+
print(f"Error: The file '{path_to_log}' was not found.")

0 commit comments

Comments
 (0)