snap-0.8.0: test/runTestsAndCoverage.sh
#!/bin/sh
set -e
if [ -z "$DEBUG" ]; then
export DEBUG=snap-testsuite
fi
SUITE=./dist/build/snap-testsuite/snap-testsuite
rm -f snap-testsuite.tix
if [ ! -f $SUITE ]; then
cat <<EOF
Testsuite executable not found, please run:
cabal configure
then
cabal build
EOF
exit;
fi
$SUITE $*
DIR=dist/hpc
rm -Rf $DIR
mkdir -p $DIR
EXCLUDES='Main
Blackbox.App
Blackbox.BarSnaplet
Blackbox.Common
Blackbox.EmbeddedSnaplet
Blackbox.FooSnaplet
Blackbox.Tests
Blackbox.Types
Snap.Snaplet.Internal.Lensed.Tests
Snap.Snaplet.Internal.LensT.Tests
Snap.Snaplet.Internal.RST.Tests
Snap.Snaplet.Internal.Tests
Snap.TestCommon
'
EXCL=""
for m in $EXCLUDES; do
EXCL="$EXCL --exclude=$m"
done
rm -f non-cabal-appdir/snaplets/heist/templates/bad.tpl
rm -f non-cabal-appdir/snaplets/heist/templates/good.tpl
rm -fr non-cabal-appdir/snaplets/foosnaplet
hpc markup $EXCL --destdir=$DIR snap-testsuite >/dev/null 2>&1
cat <<EOF
Test coverage report written to $DIR.
EOF