From: Chris Howey Date: Sun, 26 May 2013 14:08:47 +0000 (-0500) Subject: No attributes on Windows. X-Git-Tag: v1.7.2~362 X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=50d045aa5c0309c5ef92394615dd9847cfe5aaaf;p=fsnotify.git No attributes on Windows. --- diff --git a/fsnotify_test.go b/fsnotify_test.go index 4d3d918..0136bb9 100644 --- a/fsnotify_test.go +++ b/fsnotify_test.go @@ -879,6 +879,10 @@ func TestFsnotifyRenameToOverwrite(t *testing.T) { } func TestFsnotifyAttrib(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("Attributes don't work on Windows.") + } + // Create an fsnotify watcher instance and initialize it watcher, err := NewWatcher() if err != nil {