Browse Source

Merge pull request #4358 from martin-frbg/lapack954

Fix keyword used to count successful tests (Reference-LAPACK PR 954)
tags/v0.3.26
Martin Kroeker GitHub 1 year ago
parent
commit
a8cb611157
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lapack-netlib/lapack_testing.py

+ 1
- 1
lapack-netlib/lapack_testing.py View File

@@ -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])


Loading…
Cancel
Save