aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-12-01 18:04:01 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-12-01 18:04:01 +0100
commit9fdb6a2ead35df0b91acd044267b1113e36232b9 (patch)
tree467fa02fbe5cf6d4bca3f86149520dddea966080 /blas
parentb00a33bc70f2f94ef9922e516ca095f8dff245e1 (diff)
output error messages in blas unit tests
Diffstat (limited to 'blas')
-rwxr-xr-xblas/testing/runblastest.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/blas/testing/runblastest.sh b/blas/testing/runblastest.sh
index aa634a2ce..4ffaf0111 100755
--- a/blas/testing/runblastest.sh
+++ b/blas/testing/runblastest.sh
@@ -27,11 +27,17 @@ else
if [ -f $1.summ ]; then
if [ `grep "FATAL ERROR" $1.summ | wc -l` -gt 0 ]; then
echo -e $red "Test $1 failed (FATAL ERROR, read the file $1.summ for details)" $black
+ echo -e $blue
+ cat .runtest.log
+ echo -e $black
exit 1;
fi
if [ `grep "FAILED THE TESTS OF ERROR-EXITS" $1.summ | wc -l` -gt 0 ]; then
echo -e $red "Test $1 failed (FAILED THE TESTS OF ERROR-EXITS, read the file $1.summ for details)" $black
+ echo -e $blue
+ cat .runtest.log
+ echo -e $black
exit 1;
fi
fi