Commit 4ef836fa authored by Alex Brainman's avatar Alex Brainman

cmd/dist: disable misc/scgo/testsovar on netbsd

Update #11654

Change-Id: Ia199b8dd349542ad8b92b463dd2f3734dd7e66a4
Reviewed-on: https://go-review.googlesource.com/12060
Run-TryBot: Alex Brainman <alex.brainman@gmail.com>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 783297ad
......@@ -418,9 +418,12 @@ func (t *tester) registerTests() {
return t.cgoTestSO("misc/cgo/testso")
},
})
if t.goos == "darwin" {
switch t.goos {
case "darwin":
fmt.Println("Skipping misc/cgo/testsovar test. See issue 10360 for details.")
} else {
case "netbsd":
fmt.Println("Skipping misc/cgo/testsovar test. See issue 11654 for details.")
default:
t.tests = append(t.tests, distTest{
name: "testsovar",
heading: "../misc/cgo/testsovar",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment