Files
lapack/fix-lapack-testing.patch
Atri Bhattacharya 8255b49ebd * Update to version 3.12.1.
* Drop fix-lapack-testing.patch: upstreamed (commit 5b0687f).
* Add upstream commits to fix build when enabling deprecated mods: lapack-deprecated-lwork-use.patch.  lapack-depcrecated-consistent-line-reflow-1.patch.  lapack-depcrecated-consistent-line-reflow-2.patch.
* Add lapack-update-patch-version.patch to update patch version in source files.

OBS-URL: https://build.opensuse.org/package/show/science/lapack?expand=0&rev=55
2025-06-07 23:26:43 +00:00

14 lines
547 B
Diff

diff --git a/lapack_testing.py b/lapack_testing.py
index ae59926b88..96fbeb2a68 100755
--- a/lapack_testing.py
+++ b/lapack_testing.py
@@ -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])