diff options
author | Robert Griesemer <gri@golang.org> | 2009-11-19 16:42:49 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-11-19 16:42:49 -0800 |
commit | c73996254551b131642465145fcc4c8cad3a0b44 (patch) | |
tree | 3b24bae2a4f74820f1751af8c377534064225973 /src | |
parent | da1627bbbe8be1c2c67cf6996507f252d81687d8 (diff) | |
download | golang-c73996254551b131642465145fcc4c8cad3a0b44.tar.gz |
update test.sh for gofmt
R=rsc
http://codereview.appspot.com/157096
Diffstat (limited to 'src')
-rwxr-xr-x | src/cmd/gofmt/test.sh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/cmd/gofmt/test.sh b/src/cmd/gofmt/test.sh index 08afc6536..8af8900e6 100755 --- a/src/cmd/gofmt/test.sh +++ b/src/cmd/gofmt/test.sh @@ -29,15 +29,12 @@ count() { apply1() { #echo $1 $2 case `basename $F` in - # except for elf.go (which is not yet idempotent due to a few - # tricky-to-format comments) the following files are skipped - # because they are test cases for syntax errors and thus won't - # parse in the first place: - elf.go | \ + # the following files are skipped because they are test cases + # for syntax errors and thus won't parse in the first place: func3.go | const2.go | \ bug014.go | bug050.go | bug068.go | bug083.go | bug088.go | \ bug106.go | bug121.go | bug125.go | bug133.go | bug160.go | \ - bug163.go | bug166.go | bug169.go ) ;; + bug163.go | bug166.go | bug169.go | bug217.go ) ;; * ) $1 $2; count $F;; esac } |