Skip to content

Commit

Permalink
Merge pull request Reference-LAPACK#954 from ACSimon33/lapack_testing…
Browse files Browse the repository at this point in the history
…_python_summary_bug

Fixed search phrase for determining the amount of successful tests
  • Loading branch information
langou authored Dec 1, 2023
2 parents 3200980 + 5b0687f commit a4298d5
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit a4298d5

Please sign in to comment.