Skip to content

Commit a8cb611

Browse files
authored
Merge pull request #4358 from martin-frbg/lapack954
Fix keyword used to count successful tests (Reference-LAPACK PR 954)
2 parents 6aa5f53 + 589f2b6 commit a8cb611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack-netlib/lapack_testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def run_summary_test( f, cmdline, short_summary):
136136
for line in pipe.readlines():
137137
f.write(str(line))
138138
words_in_line=line.split()
139-
if (line.find("run")!=-1):
139+
if (line.find("run)")!=-1):
140140
# print line
141141
whereisrun=words_in_line.index("run)")
142142
nb_test_run+=int(words_in_line[whereisrun-2])

0 commit comments

Comments
 (0)