Commit 64023e7b authored by Rob Pike's avatar Rob Pike

a few Errorfs should have been Error

R=rsc
DELTA=6  (0 added, 0 deleted, 6 changed)
OCL=19662
CL=19664
parent fcdcf33a
...@@ -118,7 +118,7 @@ export func TestFp(t *testing.T) { ...@@ -118,7 +118,7 @@ export func TestFp(t *testing.T) {
} }
a := strings.split(line, " "); a := strings.split(line, " ");
if len(a) != 4 { if len(a) != 4 {
t.Errorf("testfp.txt:", lineno, ": wrong field count\n"); t.Error("testfp.txt:", lineno, ": wrong field count\n");
continue; continue;
} }
var s string; var s string;
...@@ -128,21 +128,21 @@ export func TestFp(t *testing.T) { ...@@ -128,21 +128,21 @@ export func TestFp(t *testing.T) {
var ok bool; var ok bool;
v, ok = myatof64(a[2]); v, ok = myatof64(a[2]);
if !ok { if !ok {
t.Errorf("testfp.txt:", lineno, ": cannot atof64 ", a[2]); t.Error("testfp.txt:", lineno, ": cannot atof64 ", a[2]);
continue; continue;
} }
s = fmt.sprintf(a[1], v); s = fmt.sprintf(a[1], v);
case "float32": case "float32":
v1, ok := myatof32(a[2]); v1, ok := myatof32(a[2]);
if !ok { if !ok {
t.Errorf("testfp.txt:", lineno, ": cannot atof32 ", a[2]); t.Error("testfp.txt:", lineno, ": cannot atof32 ", a[2]);
continue; continue;
} }
s = fmt.sprintf(a[1], v1); s = fmt.sprintf(a[1], v1);
v = float64(v1); v = float64(v1);
} }
if s != a[3] { if s != a[3] {
t.Errorf("testfp.txt:", lineno, ": ", a[0], " ", a[1], " ", a[2], " (", v, ") ", t.Error("testfp.txt:", lineno, ": ", a[0], " ", a[1], " ", a[2], " (", v, ") ",
"want ", a[3], " got ", s, "\n"); "want ", a[3], " got ", s, "\n");
} }
//else print("testfp.txt:", lineno, ": worked! ", s, "\n"); //else print("testfp.txt:", lineno, ": worked! ", s, "\n");
......
...@@ -98,12 +98,12 @@ export func TestFtoa(t *testing.T) { ...@@ -98,12 +98,12 @@ export func TestFtoa(t *testing.T) {
test := &ftests[i]; test := &ftests[i];
s := strconv.ftoa64(test.f, test.fmt, test.prec); s := strconv.ftoa64(test.f, test.fmt, test.prec);
if s != test.s { if s != test.s {
t.Errorf("test", test.f, string(test.fmt), test.prec, "want", test.s, "got", s); t.Error("test", test.f, string(test.fmt), test.prec, "want", test.s, "got", s);
} }
if float64(float32(test.f)) == test.f && test.fmt != 'b' { if float64(float32(test.f)) == test.f && test.fmt != 'b' {
s := strconv.ftoa32(float32(test.f), test.fmt, test.prec); s := strconv.ftoa32(float32(test.f), test.fmt, test.prec);
if s != test.s { if s != test.s {
t.Errorf("test32", test.f, string(test.fmt), test.prec, "want", test.s, "got", s); t.Error("test32", test.f, string(test.fmt), test.prec, "want", test.s, "got", s);
} }
} }
} }
......
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