1
0
mirror of https://github.com/golang/go synced 2024-11-20 06:04:52 -07:00

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: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Alex Brainman 2015-07-11 17:19:39 +10:00
parent 783297ad6a
commit 4ef836faf6

View File

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