Lines Matching refs:REPORT
4 package report
25 forEachFile(t, "report", testParseFile)
37 Report []byte
99 if prevEmptyLine && string(s.Bytes()) == "REPORT:" {
107 test.Report = append(test.Report, s.Bytes()...)
108 test.Report = append(test.Report, '\n')
157 fmt.Fprintf(buf, "REPORT:\n%s", test.Report)
168 if title != "" && len(rep.Report) == 0 {
169 t.Fatalf("found crash message but report is empty")
176 func checkReport(t *testing.T, rep *Report, test *ParseTest) {
177 if test.HasReport && !bytes.Equal(rep.Report, test.Report) {
178 t.Fatalf("extracted wrong report:\n%s\nwant:\n%s", rep.Report, test.Report)
222 report := data[len(prefix)+nlnl:]
223 if guilty := reporter.(guilter).extractGuiltyFile(report); guilty != file {