Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(23)

Delta Between Two Patch Sets: src/cmd/link/link_test.go

Issue 48870044: code review 48870044: cmd/link: intial skeleton of linker written in Go (Closed)
Left Patch Set: Created 11 years, 2 months ago
Right Patch Set: diff -r e4b3e3c1edda https://code.google.com/p/go/ Created 11 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b