check that link() doesn't cause statinfo to be corrupted/reverted for
[arla.git] / scripts / extract-result.sh
blobf0100ab66667f15d1afe0b6d0a75375cd0c77a66
1 #!/bin/sh
3 # $Id$
6 if grep 'All test(s) were succesful' $1 > /dev/null; then
8 echo " All test(s) were succesful"
10 else
12 T=`grep 'Failed test(s) were:' $1 | sed 's/[^:]*: *//'`
14 echo " Failed test(s) were:"
15 echo
16 for a in $T ; do
17 echo " $a"
18 done