Skip to content

Commit

Permalink
cmd/dist: disable misc/scgo/testsovar on netbsd
Browse files Browse the repository at this point in the history
Update #11654

Change-Id: Ia199b8dd349542ad8b92b463dd2f3734dd7e66a4
Reviewed-on: https://go-review.googlesource.com/12060
Run-TryBot: Alex Brainman <[email protected]>
Reviewed-by: Ian Lance Taylor <[email protected]>
  • Loading branch information
alexbrainman committed Jul 12, 2015
1 parent 783297a commit 4ef836f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/cmd/dist/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 4ef836f

Please sign in to comment.