Attempt to make async buffer test more reliable

s3-about
Nick Craig-Wood 2017-05-24 16:24:06 +01:00
parent 55755a8e5b
commit ae9f8304fa
1 changed files with 4 additions and 1 deletions

View File

@ -248,10 +248,12 @@ func testAsyncReaderClose(t *testing.T, writeto bool) {
var copyN int64
var copyErr error
var wg sync.WaitGroup
started := make(chan struct{})
wg.Add(1)
go func() {
defer wg.Done()
if true {
close(started)
if writeto {
// exercise the WriteTo path
copyN, copyErr = a.WriteTo(ioutil.Discard)
} else {
@ -268,6 +270,7 @@ func testAsyncReaderClose(t *testing.T, writeto bool) {
}
}()
// Do some copying
<-started
time.Sleep(100 * time.Millisecond)
// Abandon the copy
a.Abandon()