Skip to content

Commit 5b0687f

Browse files
committed
Fixed search phrase for determining the amount of successful tests
1 parent 3200980 commit 5b0687f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)