Home | History | Annotate | Download | only in app

Lines Matching refs:crash

79 	crash, crashKey, err := findCrashForBug(c, bug)
83 if reason := checkTestJob(c, bug, bugReporting, crash, repo, branch); reason != "" {
87 manager := crash.Manager
166 func checkTestJob(c context.Context, bug *Bug, bugReporting *BugReporting, crash *Crash,
169 case crash.ReproC == 0 && crash.ReproSyz == 0:
170 return "This crash does not have a reproducer. I cannot test it."
175 case crash.ReproC == 0 && crash.ReproSyz == 0:
176 return "This crash does not have a reproducer. I cannot test it."
201 crashKey := datastore.NewKey(c, "Crash", "", job.CrashID, bugKey)
202 crash := new(Crash)
203 if err := datastore.Get(c, crashKey, crash); err != nil {
204 return nil, fmt.Errorf("job %v: failed to get crash: %v", jobID, err)
207 build, err := loadBuild(c, job.Namespace, crash.BuildID)
216 reproC, _, err := getText(c, textReproC, crash.ReproC)
220 reproSyz, _, err := getText(c, textReproSyz, crash.ReproSyz)
259 ReproOpts: crash.ReproOpts,