File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,13 @@ func TestReadClose(t *testing.T) {
7272
7373// Open pty and setup watchdogs for graceful and not so graceful failure modes
7474func prepare (t * testing.T ) (ptmx * os.File , done func ()) {
75+ if runtime .GOOS == "darwin" {
76+ t .Log ("creack/pty uses blocking i/o on darwin intentionally:" )
77+ t .Log ("> https://github.com/creack/pty/issues/52" )
78+ t .Log ("> https://github.com/creack/pty/pull/53" )
79+ t .Log ("> https://github.com/golang/go/issues/22099" )
80+ t .SkipNow ()
81+ }
7582
7683 // Due to data race potential in (*os.File).Fd()
7784 // we should never run these two tests in parallel
You can’t perform that action at this time.
0 commit comments