From a392cf4fd36728efe852d422d702cb23f5ba6d73 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 16 Dec 2013 12:59:30 -0500 Subject: [PATCH] runtime: fix test Was supposed to be in the nm CL. TBR=r CC=golang-dev https://golang.org/cl/42870043 --- src/pkg/runtime/runtime_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } -- 2.48.1