Home | History | Annotate | Download | only in report

Lines Matching refs:Title

31 	Title      string
61 titlePrefix = "TITLE: "
70 test.Title = ln[len(titlePrefix):]
128 expectCrash := (test.Title != "")
135 if rep != nil && rep.Title == "" {
136 t.Fatalf("found crash, but title is empty")
138 title, corrupted, corruptedReason, suppressed := "", false, "", false
140 title = rep.Title
145 if title != test.Title || corrupted != test.Corrupted || suppressed != test.Suppressed {
148 fmt.Fprintf(buf, "TITLE: %v\n", title)
165 test.Title, test.Corrupted, test.Suppressed,
166 title, corrupted, corruptedReason, suppressed)
168 if title != "" && len(rep.Report) == 0 {