From: Robert Griesemer Date: Wed, 22 Oct 2008 18:27:18 +0000 (-0700) Subject: - exclude newfn.go from tests - cannot be parsed syntactically alone X-Git-Tag: weekly.2009-11-06~2920 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=79985fa569d7a9592e276a902a95122696216275;p=gostls13.git - exclude newfn.go from tests - cannot be parsed syntactically alone in general R=rsc DELTA=2 (1 added, 0 deleted, 1 changed) OCL=17624 CL=17624 --- diff --git a/usr/gri/pretty/test.sh b/usr/gri/pretty/test.sh index f35bb87ed1..c17f59660d 100755 --- a/usr/gri/pretty/test.sh +++ b/usr/gri/pretty/test.sh @@ -21,7 +21,8 @@ count() { apply1() { #echo $1 $2 case `basename $F` in - selftest.go | func3.go ) ;; # skip - these are test cases for syntax errors + selftest.go | func3.go ) ;; # skip - these are test cases for syntax errors + newfn.go ) ;; # skip these - cannot parse w/o type information * ) $1 $2; count ;; esac }