summaryrefslogtreecommitdiff
path: root/validate
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-07-22 13:56:23 +0000
committerIan Lynagh <igloo@earth.li>2007-07-22 13:56:23 +0000
commit17c564cd00a506080b4f8436c0153296a3c86766 (patch)
tree480db6548b41513b5e6b92dfa045b8369821699e /validate
parente1c1b8bcbeb8750da1ab88a3b0b841e5a39110bc (diff)
downloadhaskell-17c564cd00a506080b4f8436c0153296a3c86766.tar.gz
Check for framework failures and unexpected passes in validate
Diffstat (limited to 'validate')
-rw-r--r--validate8
1 files changed, 6 insertions, 2 deletions
diff --git a/validate b/validate
index 6ba8901a82..39fa819cd1 100644
--- a/validate
+++ b/validate
@@ -24,7 +24,10 @@ make -j2
make -C testsuite/tests/ghc-regress fast stage=2 CLEANUP=1 2>&1 | tee testlog
-if grep '0 unexpected failures' testlog >/dev/null 2>/dev/null; then
+if
+ grep '\<0 caused framework failures' testlog >/dev/null 2>/dev/null &&
+ grep '\<0 unexpected passes' testlog >/dev/null 2>/dev/null &&
+ grep '\<0 unexpected failures' testlog >/dev/null 2>/dev/null ; then
echo "-------------------------------------------------------------------"
echo "Congratulations! This tree is has passed minimal testing."
echo
@@ -37,7 +40,8 @@ if grep '0 unexpected failures' testlog >/dev/null 2>/dev/null; then
echo "-------------------------------------------------------------------"
else
echo "-------------------------------------------------------------------"
- echo "Oops! Looks like you have some test failures."
+ echo "Oops! Looks like you have some unexpected test results or"
+ echo "framework failures."
echo "Please fix them before pushing/sending patches."
echo "-------------------------------------------------------------------"
fi