Branch
Hash :
b2004ed6
Author :
Date :
2006-10-30T22:09:59
fix automated coverage git-svn-id: svn://coreboot.org/openbios/fcode-utils@112 f158a5a8-5612-0410-a976-696ce0be7e32
#!/bin/bash
SRCDIR=$1
DSTDIR=$2
BASENAME=$DSTDIR
TITLE="$3"
printf "Generating info file..."
geninfo -t $BASENAME -o $BASENAME.info $SRCDIR 2>/dev/null
printf "ok\n"
printf "Filtering info file..."
sed -i "/stat\.h/ {
N
N
N
N
d
}" $BASENAME.info
printf "ok\n"
genhtml --output-directory $DSTDIR --show-details --highlight --legend --frames --title "$TITLE" $BASENAME.info