1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-24 12:56:36 +02:00
rclone/vfs/vfstest/write_non_unix.go

26 lines
615 B
Go
Raw Normal View History

2017-05-10 11:19:32 +01:00
// +build !linux,!darwin,!freebsd
package vfstest
2017-05-10 11:19:32 +01:00
import (
"runtime"
"testing"
"golang.org/x/sys/windows"
2017-05-10 11:19:32 +01:00
)
// TestWriteFileDoubleClose tests double close on write
func TestWriteFileDoubleClose(t *testing.T) {
t.Skip("not supported on " + runtime.GOOS)
}
// writeTestDup performs the platform-specific implementation of the dup() syscall
func writeTestDup(oldfd uintptr) (uintptr, error) {
p, err := windows.GetCurrentProcess()
if err != nil {
return 0, err
}
var h windows.Handle
return uintptr(h), windows.DuplicateHandle(p, windows.Handle(oldfd), p, &h, 0, true, windows.DUPLICATE_SAME_ACCESS)
}