Add script to collect debugging information.

This commit is contained in:
Daniel Gröber 2014-05-24 16:32:02 +02:00
parent 4a920c27b0
commit 3c048b2732
1 changed files with 37 additions and 0 deletions

37
scripts/collect-debug-info.sh Executable file
View File

@ -0,0 +1,37 @@
#!/bin/sh
(
set -e
cd $(dirname $0)/..
echo "======== ghc-pkg list ========"
ghc_ver=$(ghc --version | sed -r 's/.*[[:space:]]([0-9.]+)/\1/')
ghc-pkg list -v \
--global --user \
--package-db .cabal-sandbox/*-ghc-$ghc_ver-packages.conf.d 2>&1
echo "======== cabal reconfigure ========"
cabal clean -v3
cabal configure -v3 --enable-tests 2>&1
echo "======== END cabal reconfigure ========"
echo "======== cabal setup/config ========"
cat dist/setup-config
echo "\n======== END cabal setup/config ========"
echo "======== cabal build ========"
cabal build -v 2>&1
echo "======== END cabal build ========"
echo "======== spec ========"
./dist/build/spec/spec 2>&1
echo "======== END spec ========"
echo "======== doctest ========"
./dist/build/doctest/doctest 2>&1
echo "======== END doctest ========"
) | tee /tmp/ghc-mod-debug-info.log
echo
echo
echo "Debug info written to: /tmp/ghc-mod-debug-info.log"