Files
rclone/vfs/vfstest/write_other.go
2025-12-09 14:59:31 +00:00

20 lines
468 B
Go

//go:build !linux && !darwin && !freebsd && !openbsd && !windows
package vfstest
import (
"errors"
"runtime"
"testing"
)
// 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() unix
func writeTestDup(oldfd uintptr) (uintptr, error) {
return 0, errors.New("not supported on " + runtime.GOOS)
}