]> go.fuhry.dev Git - fsnotify.git/commitdiff
No attributes on Windows.
authorChris Howey <chris@howey.me>
Sun, 26 May 2013 14:08:47 +0000 (09:08 -0500)
committerChris Howey <chris@howey.me>
Sun, 26 May 2013 14:08:47 +0000 (09:08 -0500)
fsnotify_test.go

index 4d3d9187062c5a255a96e985343a6100b5f578c2..0136bb9d218ec1ed33ef0dba837102b9b5cfb6ad 100644 (file)
@@ -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 {