aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaresh Kamboju <naresh.kamboju@linaro.org>2017-05-10 13:01:46 +0530
committerNaresh Kamboju <naresh.kamboju@linaro.org>2017-05-10 13:01:46 +0530
commitad19d3abc4b44c3a0cd3744e7e7680a4670daeb7 (patch)
tree52902f44166efdae6087d235339be3cd87596eff
parentafa00184cdf939db722d861978893c9ec9d3f039 (diff)
lapack_testing.py: print lava friendly results
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
-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("")