]> Cypherpunks repositories - gostls13.git/commitdiff
- exclude newfn.go from tests - cannot be parsed syntactically alone
authorRobert Griesemer <gri@golang.org>
Wed, 22 Oct 2008 18:27:18 +0000 (11:27 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 22 Oct 2008 18:27:18 +0000 (11:27 -0700)
in general

R=rsc
DELTA=2  (1 added, 0 deleted, 1 changed)
OCL=17624
CL=17624

usr/gri/pretty/test.sh

index f35bb87ed172097418af4310740fe202456cc264..c17f59660d9690d7ef33dcfea03f4867bf13c98d 100755 (executable)
@@ -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
 }