Merge pull request #20259 from Microsoft/jjh/testunit-pkgfilenotify

Windows CI: test-unit for pkg\filenotify
Upstream-commit: 991cb36d76b96b6f705e82e59953048704152498
Component: engine
This commit is contained in:
Vincent Demeester
2016-02-12 08:32:43 +01:00
@@ -4,6 +4,7 @@ import (
"fmt"
"io/ioutil"
"os"
"runtime"
"testing"
"time"
@@ -36,6 +37,9 @@ func TestPollerAddRemove(t *testing.T) {
}
func TestPollerEvent(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("No chmod on Windows")
}
w := NewPollingWatcher()
f, err := ioutil.TempFile("", "test-poller")