1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

Windows CI: test-unit for pkg\filenotify
This commit is contained in:
Vincent Demeester 2016-02-12 08:32:43 +01:00
commit 991cb36d76

View file

@ -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")