- 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
This commit is contained in:
Robert Griesemer 2008-10-22 11:27:18 -07:00
parent fac3dfe638
commit 79985fa569

View File

@ -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
}