Skip to content

Commit

Permalink
Fix search phrase used to count successful tests (Reference-LAPACK PR…
Browse files Browse the repository at this point in the history
… 954)
  • Loading branch information
martin-frbg authored Dec 5, 2023
1 parent 6aa5f53 commit 589f2b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lapack-netlib/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 589f2b6

Please sign in to comment.