diff options
author | Ian Lynagh <igloo@earth.li> | 2007-07-22 13:56:23 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-07-22 13:56:23 +0000 |
commit | 17c564cd00a506080b4f8436c0153296a3c86766 (patch) | |
tree | 480db6548b41513b5e6b92dfa045b8369821699e /validate | |
parent | e1c1b8bcbeb8750da1ab88a3b0b841e5a39110bc (diff) | |
download | haskell-17c564cd00a506080b4f8436c0153296a3c86766.tar.gz |
Check for framework failures and unexpected passes in validate
Diffstat (limited to 'validate')
-rw-r--r-- | validate | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |