[commit: ghc] master: Have validate take into account stat test failures too. (832ef3f)

git at git.haskell.org git at git.haskell.org
Fri Nov 7 16:16:42 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/832ef3fb8f45f98add9dbfac5387281e3e0bc5dc/ghc

>---------------------------------------------------------------

commit 832ef3fb8f45f98add9dbfac5387281e3e0bc5dc
Author: Gintautas Miliauskas <gintautas.miliauskas at gmail.com>
Date:   Fri Nov 7 10:17:03 2014 -0600

    Have validate take into account stat test failures too.
    
    This should have gone in with the update in testlib.py to split
    off stat test failures into a separate category in the summary.
    
    Reviewers: austin
    
    Reviewed By: austin
    
    Subscribers: thomie, carter
    
    Differential Revision: https://phabricator.haskell.org/D451


>---------------------------------------------------------------

832ef3fb8f45f98add9dbfac5387281e3e0bc5dc
 validate | 1 +
 1 file changed, 1 insertion(+)

diff --git a/validate b/validate
index c6e6d69..7464be9 100755
--- a/validate
+++ b/validate
@@ -257,6 +257,7 @@ 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 &&
+    grep '\<0 unexpected stat failures' testlog >/dev/null 2>/dev/null &&
     ! grep 'Some files are written by multiple tests' testlog >/dev/null 2>/dev/null ; then
     if [ $testsuite_only -eq 0 ] && [ $no_clean -eq 0 ]
     then



More information about the ghc-commits mailing list