]> Cypherpunks repositories - gostls13.git/commitdiff
all: gofmt -w -s src misc
authorRobert Griesemer <gri@golang.org>
Thu, 8 Mar 2012 18:48:51 +0000 (10:48 -0800)
committerRobert Griesemer <gri@golang.org>
Thu, 8 Mar 2012 18:48:51 +0000 (10:48 -0800)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5781058

misc/cgo/test/backdoor/backdoor.go
misc/dashboard/app/build/init.go
misc/dashboard/app/build/test.go
src/pkg/crypto/tls/handshake_server_test.go
src/pkg/database/sql/sql_test.go
src/pkg/encoding/gob/encoder_test.go
src/pkg/exp/norm/maketables.go
src/pkg/net/http/client_test.go
src/pkg/path/filepath/path_test.go

index 3428e9e43fdd6c6ad93124733b65673e16427d99..efe4f01f48d0d13830b0adaa6771913c45cc5ddf 100644 (file)
@@ -4,4 +4,4 @@
 
 package backdoor
 
-func LockedOSThread() bool  // in runtime.c
+func LockedOSThread() bool // in runtime.c
index 494585b0ea99a9282b95e043fc619e78656e4630..5311688b77aa5d6d8add94f8afe9eaa29f0071b5 100644 (file)
@@ -15,7 +15,7 @@ import (
 
 // defaultPackages specifies the Package records to be created by initHandler.
 var defaultPackages = []*Package{
-       &Package{Name: "Go", Kind: "go"},
+       {Name: "Go", Kind: "go"},
 }
 
 // subRepos specifies the Go project sub-repositories.
index 4114c25c52636507d8ca032f38bb6a8c1adf11ae..d8470fec12448a318029d17ce5351eb80e8f3cf0 100644 (file)
@@ -37,7 +37,7 @@ const testPkg = "code.google.com/p/go.test"
 var testPackage = &Package{Name: "Test", Kind: "subrepo", Path: testPkg}
 
 var testPackages = []*Package{
-       &Package{Name: "Go", Path: ""},
+       {Name: "Go", Path: ""},
        testPackage,
 }
 
index bd31d31ae1adad4021d7b65d9d46b1f87b7ee61f..08a0ccb09808cfe6c7a786a138683bf55eda47a4 100644 (file)
@@ -143,7 +143,7 @@ func testServerScript(t *testing.T, name string, serverScript [][]byte, config *
        if peers != nil {
                gotpeers := <-pchan
                if len(peers) == len(gotpeers) {
-                       for i, _ := range peers {
+                       for i := range peers {
                                if !peers[i].Equal(gotpeers[i]) {
                                        t.Fatalf("%s: mismatch on peer cert %d", name, i)
                                }
index e6b92a941baf618c0837dc1c0a9a2cf09121abf9..02ab20cd7c1ab567c3d7beed7123244931f913f8 100644 (file)
@@ -463,48 +463,48 @@ type nullTestSpec struct {
 
 func TestNullStringParam(t *testing.T) {
        spec := nullTestSpec{"nullstring", "string", [6]nullTestRow{
-               nullTestRow{NullString{"aqua", true}, "", NullString{"aqua", true}},
-               nullTestRow{NullString{"brown", false}, "", NullString{"", false}},
-               nullTestRow{"chartreuse", "", NullString{"chartreuse", true}},
-               nullTestRow{NullString{"darkred", true}, "", NullString{"darkred", true}},
-               nullTestRow{NullString{"eel", false}, "", NullString{"", false}},
-               nullTestRow{"foo", NullString{"black", false}, nil},
+               {NullString{"aqua", true}, "", NullString{"aqua", true}},
+               {NullString{"brown", false}, "", NullString{"", false}},
+               {"chartreuse", "", NullString{"chartreuse", true}},
+               {NullString{"darkred", true}, "", NullString{"darkred", true}},
+               {NullString{"eel", false}, "", NullString{"", false}},
+               {"foo", NullString{"black", false}, nil},
        }}
        nullTestRun(t, spec)
 }
 
 func TestNullInt64Param(t *testing.T) {
        spec := nullTestSpec{"nullint64", "int64", [6]nullTestRow{
-               nullTestRow{NullInt64{31, true}, 1, NullInt64{31, true}},
-               nullTestRow{NullInt64{-22, false}, 1, NullInt64{0, false}},
-               nullTestRow{22, 1, NullInt64{22, true}},
-               nullTestRow{NullInt64{33, true}, 1, NullInt64{33, true}},
-               nullTestRow{NullInt64{222, false}, 1, NullInt64{0, false}},
-               nullTestRow{0, NullInt64{31, false}, nil},
+               {NullInt64{31, true}, 1, NullInt64{31, true}},
+               {NullInt64{-22, false}, 1, NullInt64{0, false}},
+               {22, 1, NullInt64{22, true}},
+               {NullInt64{33, true}, 1, NullInt64{33, true}},
+               {NullInt64{222, false}, 1, NullInt64{0, false}},
+               {0, NullInt64{31, false}, nil},
        }}
        nullTestRun(t, spec)
 }
 
 func TestNullFloat64Param(t *testing.T) {
        spec := nullTestSpec{"nullfloat64", "float64", [6]nullTestRow{
-               nullTestRow{NullFloat64{31.2, true}, 1, NullFloat64{31.2, true}},
-               nullTestRow{NullFloat64{13.1, false}, 1, NullFloat64{0, false}},
-               nullTestRow{-22.9, 1, NullFloat64{-22.9, true}},
-               nullTestRow{NullFloat64{33.81, true}, 1, NullFloat64{33.81, true}},
-               nullTestRow{NullFloat64{222, false}, 1, NullFloat64{0, false}},
-               nullTestRow{10, NullFloat64{31.2, false}, nil},
+               {NullFloat64{31.2, true}, 1, NullFloat64{31.2, true}},
+               {NullFloat64{13.1, false}, 1, NullFloat64{0, false}},
+               {-22.9, 1, NullFloat64{-22.9, true}},
+               {NullFloat64{33.81, true}, 1, NullFloat64{33.81, true}},
+               {NullFloat64{222, false}, 1, NullFloat64{0, false}},
+               {10, NullFloat64{31.2, false}, nil},
        }}
        nullTestRun(t, spec)
 }
 
 func TestNullBoolParam(t *testing.T) {
        spec := nullTestSpec{"nullbool", "bool", [6]nullTestRow{
-               nullTestRow{NullBool{false, true}, true, NullBool{false, true}},
-               nullTestRow{NullBool{true, false}, false, NullBool{false, false}},
-               nullTestRow{true, true, NullBool{true, true}},
-               nullTestRow{NullBool{true, true}, false, NullBool{true, true}},
-               nullTestRow{NullBool{true, false}, true, NullBool{false, false}},
-               nullTestRow{true, NullBool{true, false}, nil},
+               {NullBool{false, true}, true, NullBool{false, true}},
+               {NullBool{true, false}, false, NullBool{false, false}},
+               {true, true, NullBool{true, true}},
+               {NullBool{true, true}, false, NullBool{true, true}},
+               {NullBool{true, false}, true, NullBool{false, false}},
+               {true, NullBool{true, false}, nil},
        }}
        nullTestRun(t, spec)
 }
index 050786dfd1fa5ad3f82a05c031b6378f63e08b4b..c4947cbb8d312da0bc98cfc39144d1725d59967a 100644 (file)
@@ -694,8 +694,8 @@ type Bug3 struct {
 
 func TestGobPtrSlices(t *testing.T) {
        in := []*Bug3{
-               &Bug3{1, nil},
-               &Bug3{2, nil},
+               {1, nil},
+               {2, nil},
        }
        b := new(bytes.Buffer)
        err := NewEncoder(b).Encode(&in)
index bb21bb5810949d384719d3a3b86815b889308c54..1deedc949c2d88758c1c8123598c6a1fb016cb40 100644 (file)
@@ -577,7 +577,7 @@ type decompSet [4]map[string]bool
 
 func makeDecompSet() decompSet {
        m := decompSet{}
-       for i, _ := range m {
+       for i := range m {
                m[i] = make(map[string]bool)
        }
        return m
@@ -646,7 +646,7 @@ func printCharInfoTables() int {
        fmt.Println("const (")
        for i, m := range decompSet {
                sa := []string{}
-               for s, _ := range m {
+               for s := range m {
                        sa = append(sa, s)
                }
                sort.Strings(sa)
index aa0bf4be676a23486a3074f15c93b9aa17a5ce46..e00b62e590a2869b13c400b0b6cce3377dcad309 100644 (file)
@@ -238,9 +238,9 @@ func TestRedirects(t *testing.T) {
 }
 
 var expectedCookies = []*Cookie{
-       &Cookie{Name: "ChocolateChip", Value: "tasty"},
-       &Cookie{Name: "First", Value: "Hit"},
-       &Cookie{Name: "Second", Value: "Hit"},
+       {Name: "ChocolateChip", Value: "tasty"},
+       {Name: "First", Value: "Hit"},
+       {Name: "Second", Value: "Hit"},
 }
 
 var echoCookiesRedirectHandler = HandlerFunc(func(w ResponseWriter, r *Request) {
index 71969cdf95ff36a29dbde6e565ed9f3fe48b29df..87cb5e5530837b3d93ae02ff387f7b3f620399ee 100644 (file)
@@ -440,7 +440,7 @@ func TestBase(t *testing.T) {
        tests := basetests
        if runtime.GOOS == "windows" {
                // make unix tests work on windows
-               for i, _ := range tests {
+               for i := range tests {
                        tests[i].result = filepath.Clean(tests[i].result)
                }
                // add windows specific tests
@@ -483,7 +483,7 @@ func TestDir(t *testing.T) {
        tests := dirtests
        if runtime.GOOS == "windows" {
                // make unix tests work on windows
-               for i, _ := range tests {
+               for i := range tests {
                        tests[i].result = filepath.Clean(tests[i].result)
                }
                // add windows specific tests