From: Russ Cox Date: Mon, 16 Dec 2013 17:59:30 +0000 (-0500) Subject: runtime: fix test X-Git-Tag: go1.3beta1~1224 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a392cf4fd36728efe852d422d702cb23f5ba6d73;p=gostls13.git runtime: fix test Was supposed to be in the nm CL. TBR=r CC=golang-dev https://golang.org/cl/42870043 --- diff --git a/src/pkg/runtime/runtime_test.go b/src/pkg/runtime/runtime_test.go index de6e5498e5..238b70572f 100644 --- a/src/pkg/runtime/runtime_test.go +++ b/src/pkg/runtime/runtime_test.go @@ -104,7 +104,7 @@ func TestRuntimeGogoBytes(t *testing.T) { t.Fatalf("building hello world: %v\n%s", err, out) } - out, err = exec.Command("go", "tool", "nm", "-S", dir+"/hello").CombinedOutput() + out, err = exec.Command("go", "tool", "nm", "-size", dir+"/hello").CombinedOutput() if err != nil { t.Fatalf("go tool nm: %v\n%s", err, out) }