Commit 6a40d549 authored by Alex Brainman's avatar Alex Brainman

cmd/nm: disable TestNM on darwin, linux and solaris

Update #7829

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/89810043
parent 80e7f972
...@@ -19,6 +19,10 @@ import ( ...@@ -19,6 +19,10 @@ import (
var testData uint32 var testData uint32
func checkSymbols(t *testing.T, nmoutput []byte) { 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 var checkSymbolsFound, testDataFound bool
scanner := bufio.NewScanner(bytes.NewBuffer(nmoutput)) scanner := bufio.NewScanner(bytes.NewBuffer(nmoutput))
for scanner.Scan() { for scanner.Scan() {
......
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