mirror of
https://github.com/golang/go
synced 2024-11-12 08:20:22 -07:00
runtime: skip TestSignalExitStatus on Solaris
Update #14063. Change-Id: Id13456deb15c90a8af282b77d78ff5cdbd1de8bf Reviewed-on: https://go-review.googlesource.com/19208 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
fd24e6d561
commit
1f7e3cfdbc
@ -137,8 +137,8 @@ func loop(i int, c chan bool) {
|
||||
func TestSignalExitStatus(t *testing.T) {
|
||||
testenv.MustHaveGoBuild(t)
|
||||
switch runtime.GOOS {
|
||||
case "netbsd":
|
||||
t.Skip("skipping on NetBSD; see https://golang.org/issue/14063")
|
||||
case "netbsd", "solaris":
|
||||
t.Skipf("skipping on %s; see https://golang.org/issue/14063", runtime.GOOS)
|
||||
}
|
||||
exe, err := buildTestProg(t, "testprog")
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user