-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Open
Description
Proposal Details
The accepted proposal #36532 added a Context method to testing.T, which is great, but I can think of two straightforward ways to improve its usefulness further:
- Expose
T.Deadline()as the deadline for the context. There are (hopefully rare) cases where something needs to propagate deadline information to something that isn't go, e.g. a subprocess, where simple cancelation may not be sufficient. Even in cases where the final consumer of the context is go, it's helpful for e.g. logging to be able to distinguish between a context cancelled due to a timeout vs. cancelled for some other reason. This should be as simple as swapping outcontext.WithCancelforcontext.WithDeadlinewhere appropriate. - Create a
trace.Tasknamed for the test. When running a trace or benchmark with-trace, it can be handy to be able to track back regions to specific tests. This, too, is fairly low-cost given that thetestingpackage already depends onruntime/trace.
kylelemons and nsrip-ddccmtaylor, hairyhenderson, lvlcn-t and picatz
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Incoming