testing.common.parent (field)

22 uses

	testing (current package)
		benchmark.go#L634: 			parent:  &b.common,
		testing.go#L406: 	parent   *common
		testing.go#L495: 				parent := c.parent
		testing.go#L569: 	p := c.parent
		testing.go#L680: 	if c.parent != nil {
		testing.go#L681: 		c.parent.setRan()
		testing.go#L690: 	if c.parent != nil {
		testing.go#L691: 		c.parent.Fail()
		testing.go#L756: 		for parent := c.parent; parent != nil; parent = parent.parent {
		testing.go#L1045: 	t.parent.sub = append(t.parent.sub, t)
		testing.go#L1059: 	<-t.parent.barrier // Wait for the parent test to complete.
		testing.go#L1101: 			for p := t.parent; p != nil; p = p.parent {
		testing.go#L1132: 			for root := &t.common; root.parent != nil; root = root.parent {
		testing.go#L1138: 				if r := root.parent.runCleanup(recoverAndReturnPanic); r != nil {
		testing.go#L1139: 					fmt.Fprintf(root.parent.w, "cleanup panicked with %v", r)
		testing.go#L1181: 		if t.parent != nil && atomic.LoadInt32(&t.hasSub) == 0 {
		testing.go#L1221: 			parent:  &t.common,
		testing.go#L1435: 	if t.parent == nil {