]> Cypherpunks repositories - gostls13.git/commitdiff
exp/gotype: add more test packages
authorRobert Griesemer <gri@golang.org>
Tue, 30 Oct 2012 16:42:43 +0000 (09:42 -0700)
committerRobert Griesemer <gri@golang.org>
Tue, 30 Oct 2012 16:42:43 +0000 (09:42 -0700)
R=r
CC=golang-dev
https://golang.org/cl/6822051

src/pkg/exp/gotype/gotype_test.go

index 8732d4c5aa83b7d1b47beae434fd36f267b189a9..42d716d81f97f864b7ebb8c591e0a9d64b8d82a4 100644 (file)
@@ -35,10 +35,12 @@ var tests = []struct {
 
        // directories
        {filepath.Join(runtime.GOROOT(), "src/pkg/go/ast"), "ast"},
+       {filepath.Join(runtime.GOROOT(), "src/pkg/go/build"), "build"},
        {filepath.Join(runtime.GOROOT(), "src/pkg/go/doc"), "doc"},
-       {filepath.Join(runtime.GOROOT(), "src/pkg/go/token"), "scanner"},
-       {filepath.Join(runtime.GOROOT(), "src/pkg/go/scanner"), "scanner"},
        {filepath.Join(runtime.GOROOT(), "src/pkg/go/parser"), "parser"},
+       {filepath.Join(runtime.GOROOT(), "src/pkg/go/printer"), "printer"},
+       {filepath.Join(runtime.GOROOT(), "src/pkg/go/scanner"), "scanner"},
+       {filepath.Join(runtime.GOROOT(), "src/pkg/go/token"), "token"},
        {filepath.Join(runtime.GOROOT(), "src/pkg/exp/types"), "types"},
 }