aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlapack_testing.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lapack_testing.py b/lapack_testing.py
index 70783fee..c9a633ea 100755
--- a/lapack_testing.py
+++ b/lapack_testing.py
@@ -268,7 +268,7 @@ for dtype in range_prec:
# EIG TESTS
cmdbase="xeigtst"+letter+" < "+dtests[0][dtest]+".in > "+dtests[2][dtest]+".out"
if (not just_errors and not short_summary):
- print("--> Testing "+name+" "+dtests[1][dtest]+" [ "+cmdbase+" ]")
+ print("Testing "+name+" "+dtests[1][dtest], end=' ')
# Run the process: either to read the file or run the LAPACK testing
nb_test = run_summary_test(f, cmdbase, short_summary)
list_results[0][dtype]+=nb_test[0]
@@ -279,13 +279,13 @@ for dtype in range_prec:
if (not short_summary):
if (nb_test[0]>0 and just_errors==0):
- print("--> Tests passed: "+str(nb_test[0]))
+ print("passed: "+str(nb_test[0]))
if (nb_test[1]>0):
- print("--> Tests failing to pass the threshold: "+str(nb_test[1]))
+ print("failing to pass the threshold: "+str(nb_test[1]))
if (nb_test[2]>0):
- print("--> Illegal Error: "+str(nb_test[2]))
+ print("Illegal Error: "+str(nb_test[2]))
if (nb_test[3]>0):
- print("--> Info Error: "+str(nb_test[3]))
+ print("Info Error: "+str(nb_test[3]))
if (got_error>0 and just_errors==1):
print("ERROR IS LOCATED IN "+name+" "+dtests[1][dtest]+" [ "+cmdbase+" ]")
print("")