Skip to content

Commit a4298d5

Browse files
authored
Merge pull request #954 from ACSimon33/lapack_testing_python_summary_bug
Fixed search phrase for determining the amount of successful tests
2 parents 3200980 + 5b0687f commit a4298d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack_testing.py

+1-1
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)