Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed search phrase for determining the amount of successful tests
  • Loading branch information
ACSimon33 committed Dec 1, 2023
commit 5b0687f429cf420629c0eeafba6a74a2564d4131
2 changes: 1 addition & 1 deletion lapack_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def run_summary_test( f, cmdline, short_summary):
for line in pipe.readlines():
f.write(str(line))
words_in_line=line.split()
if (line.find("run")!=-1):
if (line.find("run)")!=-1):
# print line
whereisrun=words_in_line.index("run)")
nb_test_run+=int(words_in_line[whereisrun-2])
Expand Down