mirror of
https://github.com/rclone/rclone.git
synced 2025-02-22 05:21:59 +01:00
mount: disable failing test TestWriteFileDoubleClose on OSX
This commit is contained in:
parent
c8a4d437a0
commit
473a388f6d
@ -3,6 +3,7 @@
|
||||
package mounttest
|
||||
|
||||
import (
|
||||
"runtime"
|
||||
"syscall"
|
||||
"testing"
|
||||
|
||||
@ -12,6 +13,9 @@ import (
|
||||
// TestWriteFileDoubleClose tests double close on write
|
||||
func TestWriteFileDoubleClose(t *testing.T) {
|
||||
run.skipIfNoFUSE(t)
|
||||
if runtime.GOOS == "darwin" {
|
||||
t.Skip("Skipping test on OSX")
|
||||
}
|
||||
|
||||
out, err := osCreate(run.path("testdoubleclose"))
|
||||
assert.NoError(t, err)
|
||||
|
Loading…
Reference in New Issue
Block a user