| // Copyright 2014 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| func TestLayout(t *testing.T) { |
| p := Prog{GOOS: "darwin", GOARCH: "amd64", StartSym: "text_start"} |
| p.Error = func(s string) { t.Error(s) } |
| const obj = "testdata/layout.6" |
| return // already reported |
| t.Errorf("%s: unexpected dead symbols %v", obj, p.Dead) |
| for _, sym := range p.SymOrder { |
| t.Errorf("%s: symbol %s is missing section", obj, sym) |
| i := strings.Index(sym.Name, "_") |
| t.Errorf("%s: unexpected symbol %s", obj, sym) |
| if sym.Section.Name != sym.Name[:i] { |
| t.Errorf("%s: symbol %s in section %s, want %s", obj, sym, sym.Section.Name, sym.Name[:i]) |