Home | History | Annotate | Download | only in io

Lines Matching refs:tt

167 func delayClose(t *testing.T, cl closer, ch chan int, tt pipeTest) {
170 if tt.closeWithError {
171 err = cl.CloseWithError(tt.err)
182 for _, tt := range pipeTests {
185 if tt.async {
186 go delayClose(t, w, c, tt)
188 delayClose(t, w, c, tt)
193 want := tt.err
224 for _, tt := range pipeTests {
227 if tt.async {
228 go delayClose(t, r, c, tt)
230 delayClose(t, r, c, tt)
234 expect := tt.err