Commit 010739b7 authored by xujianhai666's avatar xujianhai666

reduce unit test

parent 2d28bf02
...@@ -12,11 +12,11 @@ func TestBytesBufferPool(t *testing.T) { ...@@ -12,11 +12,11 @@ func TestBytesBufferPool(t *testing.T) {
t.Error("iobuffer len not match write bytes' size") t.Error("iobuffer len not match write bytes' size")
} }
PutBytesBuffer(buf) PutBytesBuffer(buf)
buf2 := GetBytesBuffer() //buf2 := GetBytesBuffer()
// https://go-review.googlesource.com/c/go/+/162919/ // https://go-review.googlesource.com/c/go/+/162919/
// before go 1.13, sync.Pool just reserves some objs before every gc and will be cleanup by gc. // before go 1.13, sync.Pool just reserves some objs before every gc and will be cleanup by gc.
// after Go 1.13, maybe there are many reserved objs after gc. // after Go 1.13, maybe there are many reserved objs after gc.
if buf != buf2 { //if buf != buf2 {
t.Errorf("buf pointer %p != buf2 pointer %p", buf, buf2) // t.Errorf("buf pointer %p != buf2 pointer %p", buf, buf2)
} //}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment