diff options
| -rwxr-xr-x | meta/recipes-devtools/valgrind/valgrind/run-ptest | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind/run-ptest b/meta/recipes-devtools/valgrind/valgrind/run-ptest index e8a1a668fc..f37780ef6a 100755 --- a/meta/recipes-devtools/valgrind/valgrind/run-ptest +++ b/meta/recipes-devtools/valgrind/valgrind/run-ptest | |||
| @@ -55,6 +55,16 @@ for i in `cat remove-for-all`; do | |||
| 55 | mv $i.IGNORE $i.vgtest; | 55 | mv $i.IGNORE $i.vgtest; |
| 56 | done | 56 | done |
| 57 | 57 | ||
| 58 | echo "Failed test details..." | ||
| 59 | failed_tests=`grep FAIL: ${LOG} | awk '{print $2}'` | ||
| 60 | for test in $failed_tests; do | ||
| 61 | for diff_results in `ls $test*.diff`; do | ||
| 62 | echo $diff_results | ||
| 63 | echo '************' | ||
| 64 | cat $diff_results | ||
| 65 | done | ||
| 66 | done | ||
| 67 | |||
| 58 | passed=`grep PASS: ${LOG}|wc -l` | 68 | passed=`grep PASS: ${LOG}|wc -l` |
| 59 | failed=`grep FAIL: ${LOG}|wc -l` | 69 | failed=`grep FAIL: ${LOG}|wc -l` |
| 60 | skipped=`grep SKIP: ${LOG}|wc -l` | 70 | skipped=`grep SKIP: ${LOG}|wc -l` |
