You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return"", fmt.Errorf("failed to attribute panic to test, using regex %s on '%s'", panicAttributionRe.String(), regexSanitizePanicPackage)
422
+
return"", fmt.Errorf("failed to attribute panic to test, using regex %s on these strings:\n%s", panicAttributionRe.String(), strings.Join(entriesOutputs, "\n"))
421
423
}
422
424
423
425
// properly attributes races to the test that caused them
424
426
// Go JSON output gets confused, especially when tests are run in parallel
return"", fmt.Errorf("failed to attribute race to test, using regex: %s on '%s'", raceAttributionRe.String(), regexSanitizeRacePackage)
437
+
return"", fmt.Errorf("failed to attribute race to test, using regex: %s on these strings:\n%s", raceAttributionRe.String(), strings.Join(entriesOutputs, "\n"))
434
438
}
435
439
436
440
// parseSubTest checks if a test name is a subtest and returns the parent and sub names
0 commit comments