runtime: fix test

Was supposed to be in the nm CL.

TBR=r
CC=golang-dev
https://golang.org/cl/42870043
This commit is contained in:
Russ Cox 2013-12-16 12:59:30 -05:00
parent a8c54a8e9a
commit a392cf4fd3

View file

@ -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)
}