]> Cypherpunks repositories - gostls13.git/commitdiff
all: fix some mistakes found by go tool vet .
authorRob Pike <r@golang.org>
Fri, 27 Sep 2013 00:09:15 +0000 (10:09 +1000)
committerRob Pike <r@golang.org>
Fri, 27 Sep 2013 00:09:15 +0000 (10:09 +1000)
R=golang-dev, iant, adg
CC=golang-dev
https://golang.org/cl/14000043

12 files changed:
src/pkg/encoding/gob/encoder_test.go
src/pkg/encoding/gob/gobencdec_test.go
src/pkg/math/big/int_test.go
src/pkg/net/http/header_test.go
src/pkg/net/http/request_test.go
src/pkg/net/http/serve_test.go
src/pkg/net/ip_test.go
src/pkg/net/timeout_test.go
src/pkg/regexp/all_test.go
src/pkg/regexp/syntax/parse_test.go
src/pkg/runtime/crash_test.go
src/pkg/runtime/mfinal_test.go

index 4f5673d6652eb6d0000d52add62d03eff4924b0f..4ecf51d122b755939f51690a100f7efcace27eda 100644 (file)
@@ -687,7 +687,7 @@ func TestChanFuncIgnored(t *testing.T) {
                t.Fatal("decode:", err)
        }
        if b1.A != b0.A {
-               t.Fatal("got %d want %d", b1.A, b0.A)
+               t.Fatalf("got %d want %d", b1.A, b0.A)
        }
        if b1.C != nil || b1.CP != nil || b1.F != nil || b1.FPP != nil {
                t.Fatal("unexpected value for chan or func")
index 4e49aeda214f30365d09477aec82ad4534fdadf6..301551db48a7158c70db9d3f21a5daf96c958a22 100644 (file)
@@ -428,7 +428,7 @@ func TestGobEncoderValueEncoder(t *testing.T) {
                t.Fatal("decode error:", err)
        }
        if *x.V != "hello" || *x.BV != "Καλημέρα" || *x.TV != "こんにちは" {
-               t.Errorf("expected `hello` got %s", x.V)
+               t.Errorf("expected `hello` got %s", *x.V)
        }
 }
 
index 01d5d4e4dc0c987a319f123124a71069108235e4..87b975d5c4b6763170124918bdf6eb2c5857a9c9 100644 (file)
@@ -89,7 +89,7 @@ func testFunZZ(t *testing.T, msg string, f funZZ, a argZZ) {
        var z Int
        f(&z, a.x, a.y)
        if !isNormalized(&z) {
-               t.Errorf("%s%v is not normalized", z, msg)
+               t.Errorf("%s%v is not normalized", msg, z)
        }
        if (&z).Cmp(a.z) != 0 {
                t.Errorf("%s%+v\n\tgot z = %v; want %v", msg, a, &z, a.z)
index 69b41a7953d1c4ada98a5cb8d8c8d3e25a50a407..9fd9837a5b6be88a9713dd2822617b8d5568e7f5 100644 (file)
@@ -204,6 +204,6 @@ func TestHeaderWriteSubsetMallocs(t *testing.T) {
                testHeader.WriteSubset(&buf, nil)
        })
        if n > 0 {
-               t.Errorf("mallocs = %d; want 0", n)
+               t.Errorf("mallocs = %g; want 0", n)
        }
 }
index 692485c49d929581d71221cde965bb5218c92379..89303c33602017b12328f0fac54926a654cff59e 100644 (file)
@@ -332,7 +332,7 @@ func TestRequestWriteBufferedWriter(t *testing.T) {
 func testMissingFile(t *testing.T, req *Request) {
        f, fh, err := req.FormFile("missing")
        if f != nil {
-               t.Errorf("FormFile file = %q, want nil", f)
+               t.Errorf("FormFile file = %v, want nil", f)
        }
        if fh != nil {
                t.Errorf("FormFile file header = %q, want nil", fh)
index d5ee6e0e8af5f4fd1523b9a7df332b5c1199ea0f..955112bc2bff0cce0ca56132c78c546c0dc26236 100644 (file)
@@ -1987,7 +1987,7 @@ func TestHTTP10ConnectionHeader(t *testing.T) {
 
                got := resp.Header["Connection"]
                if !reflect.DeepEqual(got, tt.expect) {
-                       t.Errorf("wrong Connection headers for request %q. Got %q expect %q", got, tt.expect)
+                       t.Errorf("wrong Connection headers for request %q. Got %q expect %q", tt.req, got, tt.expect)
                }
        }
 }
index 5fcc8257af67ba68bec3f542f63837c0cbffd1a2..26b53729b85d8576c40296b8f3c9d8f567cc4014 100644 (file)
@@ -85,7 +85,7 @@ func TestIPString(t *testing.T) {
                        }
                }
                if out, err := tt.in.MarshalText(); string(out) != tt.out || err != nil {
-                       t.Errorf("IP.MarshalText(%v) = %q, %v, want %q, nil", out, err, tt.out)
+                       t.Errorf("IP.MarshalText(%v) = %q, %v, want %q, nil", tt.in, out, err, tt.out)
                }
        }
 }
index a14a88169b830a808918c621c6971ff36a73f662..35d427a69c08ef2240acde01f1150eda3cbd0421 100644 (file)
@@ -549,7 +549,7 @@ func TestReadDeadlineDataAvailable(t *testing.T) {
        }
        defer c.Close()
        if res := <-servec; res.err != nil || res.n != int64(len(msg)) {
-               t.Fatalf("unexpected server Write: n=%d, err=%d; want n=%d, err=nil", res.n, res.err, len(msg))
+               t.Fatalf("unexpected server Write: n=%d, err=%v; want n=%d, err=nil", res.n, res.err, len(msg))
        }
        c.SetReadDeadline(time.Now().Add(-5 * time.Second)) // in the psat.
        buf := make([]byte, len(msg)/2)
index 9c4d64f582b1d860518d04754165ec5ad5bda654..e914a7ccb48b191ba6699cf3858ca1ba2dd95fbd 100644 (file)
@@ -308,14 +308,14 @@ func TestReplaceAllFunc(t *testing.T) {
                }
                actual := re.ReplaceAllStringFunc(tc.input, tc.replacement)
                if actual != tc.output {
-                       t.Errorf("%q.ReplaceFunc(%q,%q) = %q; want %q",
-                               tc.pattern, tc.input, tc.replacement, actual, tc.output)
+                       t.Errorf("%q.ReplaceFunc(%q,fn) = %q; want %q",
+                               tc.pattern, tc.input, actual, tc.output)
                }
                // now try bytes
                actual = string(re.ReplaceAllFunc([]byte(tc.input), func(s []byte) []byte { return []byte(tc.replacement(string(s))) }))
                if actual != tc.output {
-                       t.Errorf("%q.ReplaceFunc(%q,%q) = %q; want %q",
-                               tc.pattern, tc.input, tc.replacement, actual, tc.output)
+                       t.Errorf("%q.ReplaceFunc(%q,fn) = %q; want %q",
+                               tc.pattern, tc.input, actual, tc.output)
                }
        }
 }
index 81fd9dc0136a3d73869407da964d7f2991fd906c..269d6c3b87409f027932d34397c7b0823b1864f0 100644 (file)
@@ -542,7 +542,7 @@ func TestToStringEquivalentParse(t *testing.T) {
                        // but "{" is a shorter equivalent in some contexts.
                        nre, err := Parse(s, testFlags)
                        if err != nil {
-                               t.Errorf("Parse(%#q.String() = %#q): %v", tt.Regexp, t, err)
+                               t.Errorf("Parse(%#q.String() = %#q): %v", tt.Regexp, s, err)
                                continue
                        }
                        nd := dump(nre)
index e07810bb1d19135df4aefbac5d37af0a95367003..5476924bbdde93e709c1c444f9b21506626a460b 100644 (file)
@@ -111,9 +111,8 @@ func TestLockedDeadlock2(t *testing.T) {
 
 func TestGoexitDeadlock(t *testing.T) {
        output := executeTest(t, goexitDeadlockSource, nil)
-       want := ""
        if output != "" {
-               t.Fatalf("expected no output:\n%s", want, output)
+               t.Fatalf("expected no output, got:\n%s", output)
        }
 }
 
index 0d9b41b574e78c758f8cfb8ee8dfd3751e5f0ebe..ae06dd291ab97548ba0c8d9a8da4770008aef787 100644 (file)
@@ -80,7 +80,7 @@ func TestFinalizerInterfaceBig(t *testing.T) {
                                t.Errorf("Expected *bigValue from interface{} in finalizer, got %v", *i)
                        }
                        if i.fill != 0xDEADBEEFDEADBEEF && i.it != true && i.up != "It matters not how strait the gate" {
-                               t.Errorf("*bigValue from interface{} has the wrong value: %d\n", *i)
+                               t.Errorf("*bigValue from interface{} has the wrong value: %v\n", *i)
                        }
                        close(ch)
                })