From 50d045aa5c0309c5ef92394615dd9847cfe5aaaf Mon Sep 17 00:00:00 2001 From: Chris Howey Date: Sun, 26 May 2013 09:08:47 -0500 Subject: [PATCH] No attributes on Windows. --- fsnotify_test.go | 4 ++++ 1 file changed, 4 insertions(+) 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 { -- 2.50.1