Adding pushing of hpc translation status through hi files.
[ghc-hetmet.git] / validate
1 #!/bin/sh -e
2
3 if [ -f mk/config.mk ]; then
4    make distclean
5 fi
6
7 if [ -f mk/build.mk ]; then
8    mv mk/build.mk mk/build.mk.bak
9 fi
10
11 # The default is a "quick" build
12 echo BuildFlavour=quick >mk/build.mk
13 cat mk/build.mk.sample >>mk/build.mk
14
15 # You can override the default validate settings using mk/validate.mk
16 # e.g. you could add GhcLibWays=p to test profiling.
17 echo '-include $(TOP)/mk/validate.mk' >>mk/build.mk
18
19 sh boot
20 ./configure
21 # ToDo: configure args
22
23 make -j2
24
25 make -C testsuite/tests/ghc-regress fast stage=2 2>&1 | tee testlog
26
27 if grep '0 unexpected failures' testlog >/dev/null 2>/dev/null; then
28    echo "-------------------------------------------------------------------"
29    echo "Congratulations!  This tree is has passed minimal testing."
30    echo
31    echo "NOTE: If you have made changes that may cause failures not tested"
32    echo "for by the minimal testing procedure, please do further testing"
33    echo "as necessary."
34    echo
35    echo "When you are satisfied that you haven't broken anything, go ahead"
36    echo "and push/send your patches".
37    echo "-------------------------------------------------------------------"
38 else
39    echo "-------------------------------------------------------------------"
40    echo "Oops!  Looks like you have some test failures."
41    echo "Please fix them before pushing/sending patches."
42    echo "-------------------------------------------------------------------"
43 fi