Skip to content

Commit

Permalink
cmd/nm: disable TestNM on darwin, linux and solaris
Browse files Browse the repository at this point in the history
Update #7829

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/89810043
  • Loading branch information
alexbrainman committed Apr 21, 2014
1 parent 80e7f97 commit 6a40d54
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cmd/nm/nm_test.go
Expand Up @@ -19,6 +19,10 @@ import (
var testData uint32

func checkSymbols(t *testing.T, nmoutput []byte) {
switch runtime.GOOS {
case "linux", "darwin", "solaris":
t.Skip("skipping test; see http://golang.org/issue/7829")
}
var checkSymbolsFound, testDataFound bool
scanner := bufio.NewScanner(bytes.NewBuffer(nmoutput))
for scanner.Scan() {
Expand Down

0 comments on commit 6a40d54

Please sign in to comment.