@ -21,6 +21,7 @@ import (
"context"
"os"
"path/filepath"
"runtime"
"sync"
"testing"
"time"
@ -195,6 +196,11 @@ func TestCompleteMultipartUpload(t *testing.T) {
// TestCompleteMultipartUpload - test CompleteMultipartUpload
func TestAbortMultipartUpload ( t * testing . T ) {
if runtime . GOOS == globalWindowsOSName {
// Concurrent AbortMultipartUpload() fails on windows
t . Skip ( )
}
// Prepare for tests
disk := filepath . Join ( globalTestTmpDir , "minio-" + nextSuffix ( ) )
defer os . RemoveAll ( disk )
@ -219,7 +225,6 @@ func TestAbortMultipartUpload(t *testing.T) {
if _ , err := obj . PutObjectPart ( GlobalContext , bucketName , objectName , uploadID , 1 , mustGetPutObjReader ( t , bytes . NewReader ( data ) , 5 , md5Hex , "" ) , opts ) ; err != nil {
t . Fatal ( "Unexpected error " , err )
}
time . Sleep ( time . Second ) // Without Sleep on windows, the fs.AbortMultipartUpload() fails with "The process cannot access the file because it is being used by another process."
if err := obj . AbortMultipartUpload ( GlobalContext , bucketName , objectName , uploadID , opts ) ; err != nil {
t . Fatal ( "Unexpected error " , err )
}