Commit a3baccef authored by Robert Hencke's avatar Robert Hencke Committed by Robert Griesemer

various: fix prints

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5516049
parent 2c459f14
...@@ -119,7 +119,7 @@ func sendFailMail(c appengine.Context, com *Commit, builder string) { ...@@ -119,7 +119,7 @@ func sendFailMail(c appengine.Context, com *Commit, builder string) {
k := datastore.NewKey(c, "Log", r.LogHash, 0, nil) k := datastore.NewKey(c, "Log", r.LogHash, 0, nil)
l := new(Log) l := new(Log)
if err := datastore.Get(c, k, l); err != nil { if err := datastore.Get(c, k, l); err != nil {
c.Errorf("finding Log record %v: err", r.LogHash, err) c.Errorf("finding Log record %v: %v", r.LogHash, err)
return return
} }
......
...@@ -401,7 +401,7 @@ func writeTestmainGo() { ...@@ -401,7 +401,7 @@ func writeTestmainGo() {
fmt.Fprintln(b) // for gofmt fmt.Fprintln(b) // for gofmt
// Tests. // Tests.
fmt.Fprintln(b, "var tests = []testing.InternalTest{\n") fmt.Fprintf(b, "var tests = []testing.InternalTest{\n")
for _, f := range files { for _, f := range files {
for _, t := range f.tests { for _, t := range f.tests {
fmt.Fprintf(b, "\t{\"%s.%s\", %s.%s},\n", f.pkg, t, renamedPackage(f.pkg), t) fmt.Fprintf(b, "\t{\"%s.%s\", %s.%s},\n", f.pkg, t, renamedPackage(f.pkg), t)
......
...@@ -517,7 +517,7 @@ var mallocTest = []struct { ...@@ -517,7 +517,7 @@ var mallocTest = []struct {
{1, `Sprintf("xxx")`, func() { Sprintf("xxx") }}, {1, `Sprintf("xxx")`, func() { Sprintf("xxx") }},
{1, `Sprintf("%x")`, func() { Sprintf("%x", 7) }}, {1, `Sprintf("%x")`, func() { Sprintf("%x", 7) }},
{2, `Sprintf("%s")`, func() { Sprintf("%s", "hello") }}, {2, `Sprintf("%s")`, func() { Sprintf("%s", "hello") }},
{1, `Sprintf("%x %x")`, func() { Sprintf("%x", 7, 112) }}, {1, `Sprintf("%x %x")`, func() { Sprintf("%x %x", 7, 112) }},
{1, `Sprintf("%g")`, func() { Sprintf("%g", 3.14159) }}, {1, `Sprintf("%g")`, func() { Sprintf("%g", 3.14159) }},
{0, `Fprintf(buf, "%x %x %x")`, func() { mallocBuf.Reset(); Fprintf(&mallocBuf, "%x %x %x", 7, 8, 9) }}, {0, `Fprintf(buf, "%x %x %x")`, func() { mallocBuf.Reset(); Fprintf(&mallocBuf, "%x %x %x", 7, 8, 9) }},
{1, `Fprintf(buf, "%s")`, func() { mallocBuf.Reset(); Fprintf(&mallocBuf, "%s", "hello") }}, {1, `Fprintf(buf, "%s")`, func() { mallocBuf.Reset(); Fprintf(&mallocBuf, "%s", "hello") }},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment