Home | History | Annotate | Download | only in os

Lines Matching full:testname

144 func newFile(testName string, t *testing.T) (f *File) {
145 f, err := ioutil.TempFile(localTmp(), "_Go_"+testName)
147 t.Fatalf("TempFile %s: %s", testName, err)
152 func newDir(testName string, t *testing.T) (name string) {
153 name, err := ioutil.TempDir(localTmp(), "_Go_"+testName)
155 t.Fatalf("TempDir %s: %s", testName, err)
483 mustReadDir := func(testName string) []FileInfo {
486 t.Fatalf("%s: Readdir: %v", testName, err)