blob: 10c4c327c4681759984fdec2778e210acce5a449 [file] [log] [blame]
Keith Rarick50b8ccc2014-11-12 11:43:30 -08001// Copyright 2014 The Go Authors.
2// See https://code.google.com/p/go/source/browse/CONTRIBUTORS
3// Licensed under the same terms as Go itself:
4// https://code.google.com/p/go/source/browse/LICENSE
5
6package http2
7
8import (
9 "errors"
10 "testing"
11)
12
13func TestPipeClose(t *testing.T) {
14 var p pipe
15 p.c.L = &p.m
16 a := errors.New("a")
17 b := errors.New("b")
18 p.Close(a)
19 p.Close(b)
20 _, err := p.Read(make([]byte, 1))
21 if err != a {
22 t.Errorf("err = %v want %v", err, a)
23 }
24}