LEFT | RIGHT |
(no file at all) | |
| 1 // Copyright 2014 The Go Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style |
| 3 // license that can be found in the LICENSE file. |
| 4 |
| 5 package main |
| 6 |
| 7 import ( |
| 8 "bytes" |
| 9 "debug/goobj" |
| 10 "testing" |
| 11 ) |
| 12 |
| 13 func TestLinkHello(t *testing.T) { |
| 14 p := &Prog{ |
| 15 GOOS: "darwin", |
| 16 GOARCH: "amd64", |
| 17 Error: func(s string) { t.Error(s) }, |
| 18 } |
| 19 var buf bytes.Buffer |
| 20 p.link(&buf, "testdata/hello.6") |
| 21 if p.NumError > 0 { |
| 22 return |
| 23 } |
| 24 if len(p.Syms) != 2 || p.Syms[goobj.SymID{"_rt0_go", 0}] == nil || p.Sym
s[goobj.SymID{"hello", 1}] == nil { |
| 25 t.Errorf("Syms = %v, want [_rt0_go hello<1>]", p.Syms) |
| 26 } |
| 27 |
| 28 checkGolden(t, buf.Bytes(), "testdata/link.hello.darwin.amd64") |
| 29 |
| 30 // uncomment to leave file behind for execution: |
| 31 // ioutil.WriteFile("a.out", buf.Bytes(), 0777) |
| 32 } |
LEFT | RIGHT |