]> Cypherpunks repositories - gostls13.git/commitdiff
os/signal: don't run TestTerminalSignal on Solaris
authorIan Lance Taylor <iant@golang.org>
Wed, 22 Nov 2017 19:27:16 +0000 (11:27 -0800)
committerIan Lance Taylor <iant@golang.org>
Wed, 22 Nov 2017 20:58:08 +0000 (20:58 +0000)
Fixes #22849

Change-Id: Icf7f07d0d1d0669f5db4943030588646c819c62a
Reviewed-on: https://go-review.googlesource.com/79495
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>

src/os/signal/internal/pty/pty.go
src/os/signal/signal_cgo_test.go

index 704af3f67be1e0983fe149b202f2529e35f212b5..c59185adb57453af24f36751f55fb1c55b2e5bbe 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// +build darwin dragonfly freebsd linux netbsd openbsd solaris
+// +build darwin dragonfly freebsd linux netbsd openbsd
 // +build cgo
 
 // Package pty is a simple pseudo-terminal package for Unix systems,
index 0daaacb07cc6923b74c6df80bb216ed3741c936d..a11adca0cc216b67e1ec8db8c3476e24f07ee5f0 100644 (file)
@@ -2,9 +2,11 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// +build darwin dragonfly freebsd linux netbsd openbsd solaris
+// +build darwin dragonfly freebsd linux netbsd openbsd
 // +build cgo
 
+// Note that this test does not work on Solaris: issue #22849.
+
 package signal_test
 
 import (