Merge pull request #4358 from martin-frbg/lapack954
Fix keyword used to count successful tests (Reference-LAPACK PR 954)
This commit is contained in:
commit
a8cb611157
|
@ -136,7 +136,7 @@ def run_summary_test( f, cmdline, short_summary):
|
||||||
for line in pipe.readlines():
|
for line in pipe.readlines():
|
||||||
f.write(str(line))
|
f.write(str(line))
|
||||||
words_in_line=line.split()
|
words_in_line=line.split()
|
||||||
if (line.find("run")!=-1):
|
if (line.find("run)")!=-1):
|
||||||
# print line
|
# print line
|
||||||
whereisrun=words_in_line.index("run)")
|
whereisrun=words_in_line.index("run)")
|
||||||
nb_test_run+=int(words_in_line[whereisrun-2])
|
nb_test_run+=int(words_in_line[whereisrun-2])
|
||||||
|
|
Loading…
Reference in New Issue