summaryrefslogtreecommitdiff
path: root/lapack_testing.py
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2013-11-17 01:08:52 +0000
committerjulie <julielangou@users.noreply.github.com>2013-11-17 01:08:52 +0000
commit94c1e9addacc088fc75ad0c17cf599bdc1d13074 (patch)
treea34b5fa5516072e3620cea3b8fa9b5dd2e1623d3 /lapack_testing.py
parentafbaf16e8a89a7477f0bdb1ef1375ad8faa651b3 (diff)
downloadlapack-94c1e9addacc088fc75ad0c17cf599bdc1d13074.tar.gz
lapack-94c1e9addacc088fc75ad0c17cf599bdc1d13074.tar.bz2
lapack-94c1e9addacc088fc75ad0c17cf599bdc1d13074.zip
Slight modification to Lawrence patch for xTPQRT - Update conditions for testing parameter L - MIN(M,N) can be 0
Diffstat (limited to 'lapack_testing.py')
-rwxr-xr-xlapack_testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lapack_testing.py b/lapack_testing.py
index 3bd94621..3d20d636 100755
--- a/lapack_testing.py
+++ b/lapack_testing.py
@@ -139,7 +139,7 @@ def run_summary_test( f, cmdline, short_summary):
if (short_summary==0): print line,
whereisout= words_in_line.index("out")
nb_test_fail+=int(words_in_line[whereisout-1])
- if (line.find("illegal")!=-1):
+ if (line.find("illegal") or line.find("Illegal")):
if (short_summary==0):print line,
nb_test_illegal+=1
if (line.find(" INFO")!=-1):