1
0
mirror of https://github.com/golang/go synced 2024-11-18 17:54:57 -07:00

mime, strconv: Make testdata more consistent.

All packages place testdata in a specific directory with the name
"testdata". The mime and strconv packages have been updated to use
the same convention.

mime: Move "mime/test.types" to "mime/testdata/test.types". Update test
code accordingly.

strconv: Move "strconv/testfp.txt" to "strconv/testdata/testfp.txt".
Update test code accordingly.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/7098072
This commit is contained in:
Robin Eklind 2013-01-22 13:44:35 -08:00 committed by Brad Fitzpatrick
parent 657168fb17
commit a1231839b5
4 changed files with 8 additions and 8 deletions

View File

@ -52,7 +52,7 @@ func initMime() {
}
func initMimeForTests() map[string]string {
typeFiles = []string{"test.types"}
typeFiles = []string{"testdata/test.types"}
return map[string]string{
".t1": "application/test",
".t2": "text/test; charset=utf-8",

View File

@ -96,9 +96,9 @@ func myatof32(s string) (f float32, ok bool) {
}
func TestFp(t *testing.T) {
f, err := os.Open("testfp.txt")
f, err := os.Open("testdata/testfp.txt")
if err != nil {
t.Fatal("testfp: open testfp.txt:", err)
t.Fatal("testfp: open testdata/testfp.txt:", err)
}
defer f.Close()
@ -111,7 +111,7 @@ func TestFp(t *testing.T) {
break
}
if err2 != nil {
t.Fatal("testfp: read testfp.txt: " + err2.Error())
t.Fatal("testfp: read testdata/testfp.txt: " + err2.Error())
}
line = line[0 : len(line)-1]
lineno++
@ -120,7 +120,7 @@ func TestFp(t *testing.T) {
}
a := strings.Split(line, " ")
if len(a) != 4 {
t.Error("testfp.txt:", lineno, ": wrong field count")
t.Error("testdata/testfp.txt:", lineno, ": wrong field count")
continue
}
var s string
@ -130,21 +130,21 @@ func TestFp(t *testing.T) {
var ok bool
v, ok = myatof64(a[2])
if !ok {
t.Error("testfp.txt:", lineno, ": cannot atof64 ", a[2])
t.Error("testdata/testfp.txt:", lineno, ": cannot atof64 ", a[2])
continue
}
s = fmt.Sprintf(a[1], v)
case "float32":
v1, ok := myatof32(a[2])
if !ok {
t.Error("testfp.txt:", lineno, ": cannot atof32 ", a[2])
t.Error("testdata/testfp.txt:", lineno, ": cannot atof32 ", a[2])
continue
}
s = fmt.Sprintf(a[1], v1)
v = float64(v1)
}
if s != a[3] {
t.Error("testfp.txt:", lineno, ": ", a[0], " ", a[1], " ", a[2], " (", v, ") ",
t.Error("testdata/testfp.txt:", lineno, ": ", a[0], " ", a[1], " ", a[2], " (", v, ") ",
"want ", a[3], " got ", s)
}
}