Lines Matching refs:crash
23 crash := testCrash(build, 1)
24 crash.Maintainers = []string{`"Foo Bar" <foo@bar.com>`, `bar@foo.com`}
25 c.client2.ReportCrash(crash)
27 // Report the crash over email and check all fields.
46 c.expectEQ(msg.Subject, crash.Title)
50 syzbot found the following crash on:
60 Unfortunately, I don't have any reproducer for this crash yet.
78 c.checkURLContents(crashLogLink, crash.Log)
119 crash.ReproOpts = []byte("repro opts")
120 crash.ReproSyz = []byte("getpid()")
121 syzRepro := []byte(fmt.Sprintf("%s#%s\n%s", syzReproPrefix, crash.ReproOpts, crash.ReproSyz))
122 c.client2.ReportCrash(crash)
145 c.expectEQ(msg.Subject, "Re: "+crash.Title)
148 body := fmt.Sprintf(`syzbot has found a reproducer for the following crash on:
168 c.checkURLContents(crashLogLink, crash.Log)
196 c.expectEQ(msg.Subject, crash.Title)
200 syzbot found the following crash on:
229 c.checkURLContents(crashLogLink, crash.Log)
252 crash.BuildID = build2.ID
253 crash.ReproC = []byte("int main() {}")
254 crash.Maintainers = []string{"\"qux\" <qux@qux.com>"}
255 c.client2.ReportCrash(crash)
274 c.expectEQ(msg.Subject, "Re: "+crash.Title)
276 body := fmt.Sprintf(`syzbot has found a reproducer for the following crash on:
295 c.checkURLContents(reproCLink, crash.ReproC)
297 c.checkURLContents(crashLogLink, crash.Log)
350 // New crash must produce new bug in the first reporting.
351 c.client2.ReportCrash(crash)
356 c.expectEQ(msg.Subject, crash.Title+" (2)")
371 crash := testCrash(build, 1)
372 c.client2.ReportCrash(crash)
420 // Second crash happens again
429 // New crash must produce new bug in the first reporting.